* Helper method to read multiple tensors from the specified indices.
(indices: number[])
| 101 | * Helper method to read multiple tensors from the specified indices. |
| 102 | */ |
| 103 | readMany(indices: number[]): Tensor[] { |
| 104 | return indices.map(index => this.read(index)); |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * Write value into the index of the TensorArray. |
no test coverage detected