This API is preliminary and subject to change.
Sets the value at the specified row and column key value.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public void SetValue<R, C>(
T value,
R rowKey,
C columnKey
)
Public Sub SetValue(Of R, C) (
value As T,
rowKey As R,
columnKey As C
)
public:
generic<typename R, typename C>
void SetValue(
T value,
R rowKey,
C columnKey
)
member SetValue :
value : 'T *
rowKey : 'R *
columnKey : 'C -> unit
Parameters
- value
- Type: T
The value to assign. - 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.
Reference