Type | Description |
Function or value | Description |
Full Usage:
bind f a
Parameters:
'T option -> IEnumerator<'U>
a : IEnumerator<'T>
Returns: IEnumerator<'U>
|
|
Full Usage:
combine a b
Parameters:
IEnumerator<'a>
b : IEnumerator<'a>
Returns: IEnumerator<'a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Full Usage:
scan f state en
Parameters:
'a -> 'b -> 'a
state : 'a
en : IEnumerator<'b>
Returns: IEnumerator<'a>
|
|
Full Usage:
scanUntil f state pred en
Parameters:
'a -> 'b -> 'a
state : 'a
pred : 'a -> bool
en : IEnumerator<'b>
Returns: IEnumerator<'a>
|
|
Full Usage:
scanWhile f state pred en
Parameters:
'a -> 'b -> 'a
state : 'a
pred : 'a -> bool
en : IEnumerator<'b>
Returns: IEnumerator<'a>
|
|
|
|
|
|
|
|
|
|
Full Usage:
zip xs ys
Parameters:
IEnumerator<'a>
ys : IEnumerator<'b>
Returns: IEnumerator<'a * 'b>
|
|