Queue<'T> Type
append only collection optimized for quick append of block of data and query operations data - list of blocks in reverse order
Constructors
Constructor |
Description
|
|
|
Instance members
Instance member |
Description
|
|
|
Full Usage:
this.Head
Returns: 'T
|
|
Full Usage:
this.IsEmpty
Returns: bool
|
|
Full Usage:
this.Length
Returns: int
|
|
Full Usage:
this.Rev
Returns: 'T seq
|
|
Full Usage:
this.SkipExists
Parameters:
int
f : 'T -> bool
p : 'T array -> bool
Returns: bool
|
Equivalent of q |> Queue.toSeq |> Seq.skip n |> Seq.skipWhile p |> Seq.exists f, optimized for speed
|
|
|
Full Usage:
this.TryHead
Returns: 'T option
|
|