 | SparseMatrixBuilderT Methods |
The SparseMatrixBuilderT type exposes the following members.
Methods | Name | Description |
---|
 | Add(KeyValuePairIntPair, T) |
Adds the given value at the given row, column indices.
|
 | Add(IntPair, T) |
Adds the given value at the row, column indices specified
by the IntPair argument.
|
 | Clear |
Clears all stored nonzero values.
|
 | Clone |
Constructs a deep copy of self.
|
 | Contains |
Determines if the collection contains a specified value at
at specified row, column indices.
|
 | ContainsKey |
Method for determining if there is a nonzero value at the
row, column indices specified by the given key.
|
 | CopyTo |
Copies the nonzero values to an Array, starting at a particular Array index.
|
 | GetEnumerator |
Returns an enumerator that iterates through the collection of nonzero
values.
|
 | Remove(IntPair) |
Removes a value at the specified row, column indices.
|
 | Remove(KeyValuePairIntPair, T) |
Removes the specified value at the specified row, column indices.
|
 | Remove(Int32, Int32) |
Removes a value at the specified row, column indices.
|
 | TryGetValue |
Get the value at the specified row, column index pair.
|
Top
See Also