Wooga.Lambda


ImmutableListExt

Namespace: Wooga.Lambda.Data

Static members

Static memberDescription
Choose(xs, f)
Signature: (xs:ImmutableList<'T> * f:Func<'T,Maybe<'T2>>) -> ImmutableList<'T2>
Type parameters: 'T, 'T2
Find(xs, f)
Signature: (xs:ImmutableList<'T> * f:Func<'T,bool>) -> Maybe<'T>
Type parameters: 'T
Fold(xs, f, a)
Signature: (xs:ImmutableList<'T1> * f:Func<'T2,'T1,'T2> * a:'T2) -> 'T2
Type parameters: 'T1, 'T2
Fold(kvs, f, a)
Signature: (kvs:Dictionary<'T1,'T2> * f:Func<'T3,'T1,'T2,'T3> * a:'T3) -> 'T3
Type parameters: 'T1, 'T2, 'T3
Map(xs, f)
Signature: (xs:ImmutableList<'T> * f:Func<'T,'TReturn>) -> ImmutableList<'TReturn>
Type parameters: 'T, 'TReturn
Take(xs, num)
Signature: (xs:ImmutableList<'T> * num:uint32) -> ImmutableList<'T>
Type parameters: 'T
ToArray(xs)
Signature: xs:ImmutableList<'T> -> 'T []
Type parameters: 'T
ToImmutableList(xs)
Signature: (xs:'T []) -> ImmutableList<'T>
Type parameters: 'T
Fork me on GitHub