Gets the value at the specified key.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public T Get<K1, K2>(
K1 key1,
K2 key2
)
Public Function Get(Of K1, K2) (
key1 As K1,
key2 As K2
) As T
public:
generic<typename K1, typename K2>
T Get(
K1 key1,
K2 key2
)
member Get :
key1 : 'K1 *
key2 : 'K2 -> 'T
Parameters
- key1
- Type: K1
The first level value of the key to look up. - key2
- Type: K2
The second level value of the key to look up.
Type Parameters
- K1
- The element type of the first level of the vector's index.
- K2
- The element type of the second level of the vector's index.
Return Value
Type:
TThe value with key
key1,
key2.
Reference