setVector abstract method

  1. @override
void setVector(
  1. int index,
  2. List<double>? vector
)
override

Sets the vector for the value at given index.

Setting vector to null means that there is no vector for the value, and any existing vector will be removed when finish is called.

index must be in the range of 0 to length - 1.

Implementation

@override
void setVector(int index, List<double>? vector);