Standard extension methods for ITryGet{K, V}.
|
| static Maybe< V > | TryGet< K, V > (this ITryGet< K, V > self, K key) |
| | Returns the value at the specified key or index, wrapped in Maybe{V}. More...
|
| |
|
static Maybe< T > | TryGet< T > (this ITryGet< int, T > self, int key) |
| |
| static V | TryGet< K, V > (this ITryGet< K, V > self, K key, V defaultValue) |
| | Returns the value at the specified key or index, or the specified default value if the key was not found. More...
|
| |
|
static Maybe< T > | TryGet< T > (this INegListSource< T > self, int key) |
| |
|
static Maybe< T > | TryGet< T > (this IListSource< T > self, int key) |
| |
|
static Maybe< T > | TryGet< T > (this IArray< T > self, int key) |
| |
|
static Maybe< ILNode > | TryGet (this ILNode self, int key) |
| |
|
static T | TryGet< T > (this INegListSource< T > self, int key, T defaultValue) |
| |
|
static T | TryGet< T > (this IListSource< T > self, int key, T defaultValue) |
| |
|
static T | TryGet< T > (this IArray< T > self, int key, T defaultValue) |
| |
|
static ILNode | TryGet (this ILNode self, int key, ILNode defaultValue) |
| |