Deedle


List

Namespace: Deedle.Internal

This module contains additional functions for working with lists.

Functions and values

Function or valueDescription
tryChooseBy f input
Signature: f:('a -> 'b option) -> input:'a list -> 'b list option
Type parameters: 'a, 'b

Returns an option value that is Some when the specified function 'f' succeeds for all values from the input list. Otherwise returns None.

Fork me on GitHub