orderNidsView property

Int32List get orderNidsView

Read-only view over the visible-order nid buffer for hot-path consumers that walk all visible positions and want to skip the per-position visibleNidAt dispatch. The underlying buffer's length may exceed visibleNodeCount — only the first N entries are valid. The buffer itself is mutated in place by structural changes; callers must not retain the reference across mutations.

Implementation

Int32List get orderNidsView {
  _ensureVisibleOrder();
  return _order.orderNids;
}