MCPcopy Index your code
hub / github.com/nodejs/node / next

Method next

deps/v8/tools/consarray.mjs:71–78  ·  view source on GitHub ↗

* Returns the current item, moves to the next one.

()

Source from the content-addressed store, hash-verified

69 * Returns the current item, moves to the next one.
70 */
71 next() {
72 const result = this.currCell_.data[this.currCellPos_++];
73 if (this.currCellPos_ >= this.currCell_.data.length) {
74 this.currCell_ = this.currCell_.next;
75 this.currCellPos_ = 0;
76 }
77 return result;
78 }
79}
80
81

Callers 1

traverseMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected