List Module
This module contains additional functions for working with lists.
Functions and values
| Function or value |
Description
|
Full Usage:
tryChooseBy f input
Parameters:
'a -> 'b option
input : 'a list
Returns: 'b list option
|
Returns an option value that is Some when the specified function 'f' succeeds for all values from the input list. Otherwise returns None.
|
Deedle