toBuilder method

  1. @override
TensorBuilder<double> toBuilder(
  1. {bool copy = true}
)
override

Constructs a new TensorBuilder that has this tensor.

If copy is false, this tensor is not copied to the tensor builder.

Implementation

@override
TensorBuilder<double> toBuilder({bool copy = true}) {
  throw UnimplementedError();
}