TensorBuffer.dynamic constructor

  1. @protected
TensorBuffer.dynamic()

Constructs a dynamic TensorBuffer which can be resized.

Implementation

@protected
TensorBuffer.dynamic() {
  _isDynamic = true;
  _allocateMemory([0]);
}