Interface Internal.LongList

    • Method Detail

      • getLong

        long getLong​(int index)
        Like List.get(int) but more efficient in that it doesn't box the returned value.
      • addLong

        void addLong​(long element)
        Like List.add(Object) but more efficient in that it doesn't box the element.
      • setLong

        long setLong​(int index,
                     long element)
        Like List.set(int, Object) but more efficient in that it doesn't box the element.