(int type)
| 1018 | private Entry<K,V> firstExcluded = null; |
| 1019 | |
| 1020 | Iterator(int type) { |
| 1021 | this.type = type; |
| 1022 | next = firstEntry(); |
| 1023 | } |
| 1024 | |
| 1025 | Iterator(Entry<K,V> first, Entry<K,V> firstExcluded) { |
| 1026 | type = ENTRIES; |
nothing calls this directly
no test coverage detected