indicesBuffers stores values of nodes. Each tensor dimension corresponds to a buffer in indicesBuffers. For example, the indicesBuffers for the above X is: ```text indicesBuffer(X) = [ [0, 1], [0, 1, 1], [0, 0, 1, 1], [1, 2, 0, 2, 0, 0, 1, 2] ]. ```
| 448 | /// ]. |
| 449 | /// ``` |
| 450 | const ::flatbuffers::Vector<const org::apache::arrow::flatbuf::Buffer *> *indicesBuffers() const { |
| 451 | return GetPointer<const ::flatbuffers::Vector<const org::apache::arrow::flatbuf::Buffer *> *>(VT_INDICESBUFFERS); |
| 452 | } |
| 453 | /// axisOrder stores the sequence in which dimensions were traversed to |
| 454 | /// produce the prefix tree. |
| 455 | /// For example, the axisOrder for the above X is: |