Method RangeAll
RangeAll()
Create a directed collection with the same items as this collection.
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
IDirectedCollectionValue<KeyValuePair<K, V>> RangeAll()
Returns
Type | Description |
---|---|
IDirectedCollectionValue<KeyValuePair<K, V>> | The result directed collection. |