MCPcopy Create free account
hub / github.com/davidgiven/luje / AbstractMapIterator

Method AbstractMapIterator

lib/java/util/TreeMap.java:177–182  ·  view source on GitHub ↗
(TreeMap<K, V> map, Node<K, V> startNode, int startOffset)

Source from the content-addressed store, hash-verified

175 int lastOffset;
176
177 AbstractMapIterator(TreeMap<K, V> map, Node<K, V> startNode, int startOffset) {
178 backingMap = map;
179 expectedModCount = map.modCount;
180 node = startNode;
181 offset = startOffset;
182 }
183
184 AbstractMapIterator(TreeMap<K, V> map, Node<K, V> startNode) {
185 this(map, startNode, startNode != null ?

Callers

nothing calls this directly

Calls 1

minimumMethod · 0.80

Tested by

no test coverage detected