Static
emptyCreates an empty Enumerable.
A new empty Enumerable.
Static
fromCreates a new Enumerable from the input Iterable.
The Iterable to create an Enumerable from.
A new Enumerable.
Static
fromStatic
isDetermines if the passed in object is an Enumerable.
The item to test if it is an Enumerable or not.
True if the obj is an Enumerable. False if not.
Static
rangeGenerates a sequence of integral numbers within a specified range.
The value of the first integer in the sequence.
The number of sequential integers to generate.
An IEnumerable
Static
repeatGenerates a sequence that contains one repeated value.
The value to be repeated.
The number of times to repeat the value in the generated sequence.
An IEnumerable
Provides a set of static methods for IEnumerable.