clearIndexByNid method

void clearIndexByNid(
  1. int nid
)

Clears the reverse-index slot for nid directly. Used by the controller during nid allocation/release to reset per-nid state.

Implementation

void clearIndexByNid(int nid) {
  _indexByNid[nid] = kNotVisible;
}