Interface Internal.IntList

    • Method Detail

      • getInt

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

        void addInt​(int element)
        Like List.add(Object) but more efficient in that it doesn't box the element.
      • setInt

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