Method ViewOf
ViewOf(T)
Create a list view on this list containing the (first) occurrence of a particular item. NoSuchItemException if the item is not in this list.
Declaration
IList<T> ViewOf(T item)
Parameters
Type | Name | Description |
---|---|---|
T | item | The item to find. |
Returns
Type | Description |
---|---|
IList<T> | The new list view. |