|
Joutsen v0.5.0+12-g5dd5f7e
|
An interface describing collections whose items can be accessed by index. More...
Public Member Functions | |
| IndexType | IndexOf (ItemType item) |
| Fetches the index of an itemin the list. More... | |
| IndexType | IndexOf (ItemType item, IEqualityComparer< ItemType > comparer) |
| Fetches the index of an item in the list using a custom comparer. More... | |
Properties | |
| int | Count [get] |
| Determines the number of values in the list. More... | |
| ItemType | this[IndexType index] [get] |
| Fetches the value associated with the index. More... | |
An interface describing collections whose items can be accessed by index.
| IndexType Joutsen.Collections.Generic.Indexable< IndexType, ItemType >.IndexOf | ( | ItemType | item | ) |
Fetches the index of an itemin the list.
| item | the item to search for |
| IndexType Joutsen.Collections.Generic.Indexable< IndexType, ItemType >.IndexOf | ( | ItemType | item, |
| IEqualityComparer< ItemType > | comparer | ||
| ) |
Fetches the index of an item in the list using a custom comparer.
| item | the item to search for |
| comparer | the instance used to compare the item to the items in the list |
|
get |
Determines the number of values in the list.
|
get |
Fetches the value associated with the index.