axisOrder stores the sequence in which dimensions were traversed to produce the prefix tree. For example, the axisOrder for the above X is: ```text axisOrder(X) = [0, 1, 2, 3]. ```
| 457 | /// axisOrder(X) = [0, 1, 2, 3]. |
| 458 | /// ``` |
| 459 | const ::flatbuffers::Vector<int32_t> *axisOrder() const { |
| 460 | return GetPointer<const ::flatbuffers::Vector<int32_t> *>(VT_AXISORDER); |
| 461 | } |
| 462 | bool Verify(::flatbuffers::Verifier &verifier) const { |
| 463 | return VerifyTableStart(verifier) && |
| 464 | VerifyOffsetRequired(verifier, VT_INDPTRTYPE) && |