The ISequence T generic type exposes the following members.

Name | Description | |
---|---|---|
![]() | Count |
Returns the length of this sequence.
If this sequence represents an infinite set or series, this will never return!
|
![]() | HasDefiniteSize |
Tests whether this sequence is known to have a finite size.
|
![]() | Head |
Returns the first element of this sequence.
|
![]() | Init |
Returns this sequence without its last element.
|
![]() | IsEmpty |
Tests whether the sequence is empty.
|
![]() | IsTailDefined |
Checks whether this sequence's tail has been evaluated.
|
![]() | Item |
Gets the element at the specified index.
|
![]() | NonEmpty |
Tests whether the sequence is not empty.
|
![]() | Tail |
Returns a sequence of all elements except the first.
|
