Class TUnmodifiableIntLongMap

    • Constructor Detail

      • TUnmodifiableIntLongMap

        public TUnmodifiableIntLongMap(TIntLongMap m)
    • Method Detail

      • size

        public int size()
      • isEmpty

        public boolean isEmpty()
      • containsKey

        public boolean containsKey(int key)
      • containsValue

        public boolean containsValue(long val)
      • get

        public long get(int key)
      • put

        public long put(int key,
                        long value)
      • remove

        public long remove(int key)
      • putAll

        public void putAll(Map<? extends Integer,? extends Long> map)
      • clear

        public void clear()
      • keys

        public int[] keys()
      • keys

        public int[] keys(int[] array)
      • values

        public long[] values()
      • values

        public long[] values(long[] array)
      • equals

        public boolean equals(Object o)
      • hashCode

        public int hashCode()
      • toString

        public String toString()
      • getNoEntryKey

        public int getNoEntryKey()
      • getNoEntryValue

        public long getNoEntryValue()
      • forEachKey

        public boolean forEachKey(TIntProcedure procedure)
      • forEachValue

        public boolean forEachValue(TLongProcedure procedure)
      • putIfAbsent

        public long putIfAbsent(int key,
                                long value)
      • transformValues

        public void transformValues(TLongFunction function)
      • increment

        public boolean increment(int key)
      • adjustValue

        public boolean adjustValue(int key,
                                   long amount)
      • adjustOrPutValue

        public long adjustOrPutValue(int key,
                                     long adjust_amount,
                                     long put_amount)