Function or value | Description |
|
|
|
|
Full Usage:
BlockResizeArray.filter f bra
Parameters:
'T -> bool
bra : BlockResizeArray<'T>
Returns: BlockResizeArray<'T>
|
Returns a new collection containing only the elements of the collection for which the given predicate returns true.
|
Full Usage:
BlockResizeArray.find f bra
Parameters:
'T -> bool
bra : BlockResizeArray<'T>
Returns: 'T
|
|
Full Usage:
BlockResizeArray.fold f s bra
Parameters:
'a -> 'b -> 'a
s : 'a
bra : BlockResizeArray<'b>
Returns: 'a
|
Applies a function to each element of the collection, threading an accumulator argument through the computation.
|
|
|
Full Usage:
BlockResizeArray.map f bra
Parameters:
'T -> 'U
bra : BlockResizeArray<'T>
Returns: BlockResizeArray<'U>
|
Builds a new block resize array whose elements are the results of applying the given function to each of the elements of the array.
|
|
|
Full Usage:
BlockResizeArray.tryFind f bra
Parameters:
'T -> bool
bra : BlockResizeArray<'T>
Returns: 'T option
|
Returns the first element for which the given function returns true. Return None if no such element exists.
|