Return a pointer to the data pointers of all tensors in the list. For example: float* const* f = v.data(); f[0][1] is the second element of the first tensor.
| 74 | // float* const* f = v.data(); |
| 75 | // f[0][1] is the second element of the first tensor. |
| 76 | T* const* data() const { return all_data_.data(); } |
| 77 | |
| 78 | // Return a pointer the shape pointers of all tensors in the list. For |
| 79 | // example: |
no outgoing calls