Method RangeTo
RangeTo(K)
Query this sorted collection for items less than 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<KeyValuePair<K, V>> RangeTo(K top)
Parameters
Type | Name | Description |
---|---|---|
K | top | The upper bound (exclusive). |
Returns
Type | Description |
---|---|
IDirectedEnumerable<KeyValuePair<K, V>> | The result directed collection. |