Seq<T> Members
Retired Content |
---|
This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist. |
The latest Unity Application Block information can be found at the Unity Application Block site. |
The Seq<T> type exposes the following members.
Constructors
Name | Description | |
---|---|---|
Seq<T> |
Create a new Seq<T> instance wrapping the given IEnumerable.
|
Methods
Name | Description | |
---|---|---|
Concat |
Concatenate multiple sequences with this one to return a single sequence containing all items.
|
|
Equals | (Inherited from Object.) | |
Exists |
Tests the sequence, returning true if any element satisfies the given predicate.
|
|
Finalize | (Inherited from Object.) | |
First |
Return the first item in the given sequence.
|
|
ForAll |
Tests the sequence, returning true only if all elements satisfy the given predicate.
|
|
ForEach |
Execute the given action delegate for each item in the sequence.
|
|
GetEnumerator |
Returns an enumerator that iterates through the collection.
|
|
GetHashCode | (Inherited from Object.) | |
GetType | (Inherited from Object.) | |
Map<TOut> |
Return a new sequence consisting of the result of running each element through the given converter.
|
|
MemberwiseClone | (Inherited from Object.) | |
Reduce<TDest> |
Run a functional Reduce operation. See other methods for examples.
|
|
ToArray |
Return an array with the same contents as this sequence.
|
|
ToList |
Given a sequence object, return a list containing those items.
|
|
ToString | Overloaded. | |
Where |
Returns new sequence containing only the items for which the predicate is true.
|
Explicit Interface Implementations
Name | Description | |
---|---|---|
IEnumerable.GetEnumerator |
Returns an enumerator that iterates through a collection.
|