ArrayParallel Module
Specialized parallel functions for an array. Different from Array.Parallel as it will try to minimize the max degree of parallelism. Will flatten aggregate exceptions that contain one exception.
Functions and values
Function or value |
Description
|
Full Usage:
ArrayParallel.iter arg1 arg2
Parameters:
'T -> unit
arg1 : 'T[]
Modifiers: inline Type parameters: 'T |
|
Full Usage:
ArrayParallel.iteri arg1 arg2
Parameters:
int -> 'T -> unit
arg1 : 'T[]
Modifiers: inline Type parameters: 'T |
|
Full Usage:
ArrayParallel.map arg1 arg2
Parameters:
'T -> 'U
arg1 : 'T[]
Returns: 'U[]
Modifiers: inline Type parameters: 'T, 'U |
|
Full Usage:
ArrayParallel.mapi arg1 arg2
Parameters:
int -> 'T -> 'U
arg1 : 'T[]
Returns: 'U[]
Modifiers: inline Type parameters: 'T, 'U |
|