This API is preliminary and subject to change.
Gets the value at the specified key.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public T GetValue<K>(
K key
)
Public Function GetValue(Of K) (
key As K
) As T
public:
generic<typename K>
T GetValue(
K key
)
member GetValue :
key : 'K -> 'T
Parameters
- key
- Type: K
The key value.
Type Parameters
- K
- The type of the key.
Return Value
Type:
TThe value of the element with key
key, or
missing if the key could not be found.
Reference