Beispiel #1
0
            public EntryIterator(LongLongMap map)
            {
                _map      = map;
                _tVersion = map._version;
                _index    = _tSafeIndex = map.getLastFreeIndex();

                _tFv     = map._freeValue;
                _tSet    = map._set;
                _tValues = map._values;
                _entry   = new Entry();

                if (map._size == 0)
                {
                    _tSet = null;
                }
            }
Beispiel #2
0
 public EntrySet(LongLongMap map)
 {
     _map = map;
 }