Method RangeFrom
RangeFrom(T)
Query this sorted collection for items greater than or equal to a supplied value.
The returned collection is not a copy but a view into the collection.
The view is fragile in the sense that changes to the underlying collection will invalidate the view so that further operations on the view throws InvalidView exceptions.
Declaration
IDirectedEnumerable<T> RangeFrom(T bot)
Parameters
Type | Name | Description |
---|---|---|
T | bot | The lower bound (inclusive). |
Returns
Type | Description |
---|---|
IDirectedEnumerable<T> | The result directed collection. |