Yaaf.FSharp.Helper


ZipList

Defined in Yaaf.FSharp.Helper.dll.

Functions and values

Function or valueDescription
( *> ) x y
Signature: x:seq<'?20334> -> y:seq<'?20335> -> seq<'?20335>
Type parameters: '?20334, '?20335

Sequence actions, discarding the value of the first argument.

( <* ) x y
Signature: x:seq<'?20337> -> y:seq<'?20338> -> seq<'?20337>
Type parameters: '?20337, '?20338

Sequence actions, discarding the value of the second argument.

( <*> ) f a
Signature: f:seq<('?20324 -> '?20325)> -> a:seq<'?20324> -> seq<'?20325>
Type parameters: '?20324, '?20325

Sequential application

ap m f
Signature: m:seq<'?20327> -> f:seq<('?20327 -> '?20328)> -> seq<'?20328>
Type parameters: '?20327, '?20328

Sequential application

lift2 f a b
Signature: f:('?20330 -> '?20331 -> '?20332) -> a:seq<'?20330> -> b:seq<'?20331> -> seq<'?20332>
Type parameters: '?20330, '?20331, '?20332

Promote a function to a monad/applicative, scanning the monadic/applicative arguments from left to right.

returnM v
Signature: v:'?20322 -> seq<'?20322>
Type parameters: '?20322
Fork me on GitHub