Interface Internal.BooleanList

    • Method Detail

      • getBoolean

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

        void addBoolean​(boolean element)
        Like List.add(Object) but more efficient in that it doesn't box the element.
      • setBoolean

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