| Value | Description |
val EnumerateFromFunctions :
(unit -> 'T) -> ('T -> bool) -> ('T -> 'U) -> seq<'U> |
The F# compiler emits calls to this function to implement the compiler-intrinsic
conversions from untyped System.Collections.IEnumerable sequences to typed sequences
|
val EnumerateThenFinally : seq<'T> -> (unit -> unit) -> seq<'T> |
The F# compiler emits calls to this function to
implement the 'try/finally' operator for F# sequence expressions
|
val EnumerateUsing :
'T -> ('T -> #seq<'U>) -> seq<'U> (requires 'T :> IDisposable) |
The F# compiler emits calls to this function to implement the 'use' operator for F# sequence expressions
|
val EnumerateWhile : (unit -> bool) -> seq<'T> -> seq<'T> |
The F# compiler emits calls to this function to
implement the 'while' operator for F# sequence expressions
|