MCPcopy Index your code
hub / github.com/immutable-js/immutable-js / constructor

Method constructor

src/Map.js:625–629  ·  view source on GitHub ↗
(map, type, reverse)

Source from the content-addressed store, hash-verified

623
624class MapIterator extends Iterator {
625 constructor(map, type, reverse) {
626 this._type = type;
627 this._reverse = reverse;
628 this._stack = map._root && mapIteratorFrame(map._root);
629 }
630
631 next() {
632 const type = this._type;

Callers

nothing calls this directly

Calls 1

mapIteratorFrameFunction · 0.85

Tested by

no test coverage detected