add method

Adds an TensorOperator op into the Operator chain.

Implementation

@override
SequentialProcessorBuilder<TensorBuffer> add(Operator<TensorBuffer> op) {
  super.add(op);
  return this;
}