Array Module
Provides extended array functions.
Functions and values
| Function or value |
Description
|
Full Usage:
Array.foldi folder acc arr
Parameters:
'a -> int -> 'b -> 'a
acc : 'a
arr : 'b array
Returns: 'a
Modifiers: inline Type parameters: 'a, 'b |
Applies a function to each element of the array with its index and returns the final accumulator.
|
B2R2