Tanoda
|
A simple wrapper around List to provide readonly access. Useful when you want to return a list to someone but you want to make sure they don't muck it up! More...
Public Member Functions | |
ReadonlyList (List< T > list) | |
List< T >.Enumerator | GetEnumerator () |
int | IndexOf (T item) |
Static Public Member Functions | |
static implicit | operator ReadonlyList< T > (List< T > list) |
Properties | |
bool | isValid [get] |
int | Count [get] |
T | this[int index] [get] |
A simple wrapper around List to provide readonly access. Useful when you want to return a list to someone but you want to make sure they don't muck it up!
Definition at line 20 of file ReadonlyList.cs.
Leap.Unity.ReadonlyList< T >.ReadonlyList | ( | List< T > | list | ) |
Definition at line 23 of file ReadonlyList.cs.
List< T >.Enumerator Leap.Unity.ReadonlyList< T >.GetEnumerator | ( | ) |
Definition at line 45 of file ReadonlyList.cs.
int Leap.Unity.ReadonlyList< T >.IndexOf | ( | T | item | ) |
Definition at line 53 of file ReadonlyList.cs.
|
static |
Definition at line 49 of file ReadonlyList.cs.
|
get |
Definition at line 33 of file ReadonlyList.cs.
|
get |
Definition at line 27 of file ReadonlyList.cs.
|
get |
Definition at line 39 of file ReadonlyList.cs.