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