Class AbstractBooleanBigList.BooleanSubList

java.lang.Object
java.util.AbstractCollection<java.lang.Boolean>
All Implemented Interfaces:
it.unimi.dsi.fastutil.BigList<java.lang.Boolean>, BooleanBigList, BooleanCollection, it.unimi.dsi.fastutil.booleans.BooleanIterable, BooleanStack, it.unimi.dsi.fastutil.Size64, it.unimi.dsi.fastutil.Stack<java.lang.Boolean>, java.io.Serializable, java.lang.Comparable<it.unimi.dsi.fastutil.BigList<? extends java.lang.Boolean>>, java.lang.Iterable<java.lang.Boolean>, java.util.Collection<java.lang.Boolean>
Direct Known Subclasses:
AbstractBooleanBigList.BooleanRandomAccessSubList
Enclosing class:
AbstractBooleanBigList

public static class AbstractBooleanBigList.BooleanSubList
extends AbstractBooleanBigList
implements java.io.Serializable
A class implementing a sublist view.
See Also:
Serialized Form
  • Constructor Details

    • BooleanSubList

      public BooleanSubList​(BooleanBigList l, long from, long to)
  • Method Details

    • add

      public boolean add​(boolean k)
      Description copied from class: AbstractBooleanBigList
      Ensures that this collection contains the specified element (optional operation).
      Specified by:
      add in interface BooleanCollection
      Overrides:
      add in class AbstractBooleanBigList
      See Also:
      Collection.add(Object)
    • add

      public void add​(long index, boolean k)
      Description copied from class: AbstractBooleanBigList
      Inserts the specified element at the specified position in this type-specific big list (optional operation).
      Specified by:
      add in interface BooleanBigList
      Overrides:
      add in class AbstractBooleanBigList
      See Also:
      BigList.add(long,Object)
    • addAll

      public boolean addAll​(long index, java.util.Collection<? extends java.lang.Boolean> c)
      Description copied from class: AbstractBooleanBigList
      Adds all of the elements in the specified collection to this list (optional operation).
      Specified by:
      addAll in interface it.unimi.dsi.fastutil.BigList<java.lang.Boolean>
      Overrides:
      addAll in class AbstractBooleanBigList
    • getBoolean

      public boolean getBoolean​(long index)
      Description copied from interface: BooleanBigList
      Returns the element at the specified position.
      Specified by:
      getBoolean in interface BooleanBigList
      See Also:
      BigList.get(long)
    • removeBoolean

      public boolean removeBoolean​(long index)
      Description copied from class: AbstractBooleanBigList
      Removes the element at the specified position.
      Specified by:
      removeBoolean in interface BooleanBigList
      Overrides:
      removeBoolean in class AbstractBooleanBigList
      See Also:
      BigList.remove(long)
    • set

      public boolean set​(long index, boolean k)
      Description copied from class: AbstractBooleanBigList
      Replaces the element at the specified position in this big list with the specified element (optional operation).
      Specified by:
      set in interface BooleanBigList
      Overrides:
      set in class AbstractBooleanBigList
      See Also:
      BigList.set(long,Object)
    • size64

      public long size64()
      Specified by:
      size64 in interface it.unimi.dsi.fastutil.Size64
    • getElements

      public void getElements​(long from, boolean[][] a, long offset, long length)
      Description copied from class: AbstractBooleanBigList
      Copies (hopefully quickly) elements of this type-specific big list into the given big array.

      This is a trivial iterator-based implementation. It is expected that implementations will override this method with a more optimized version.

      Specified by:
      getElements in interface BooleanBigList
      Overrides:
      getElements in class AbstractBooleanBigList
      Parameters:
      from - the start index (inclusive).
      a - the destination big array.
      offset - the offset into the destination big array where to store the first element copied.
      length - the number of elements to be copied.
    • removeElements

      public void removeElements​(long from, long to)
      Description copied from class: AbstractBooleanBigList
      Removes (hopefully quickly) elements of this type-specific big list.

      This is a trivial iterator-based implementation. It is expected that implementations will override this method with a more optimized version.

      Specified by:
      removeElements in interface BooleanBigList
      Overrides:
      removeElements in class AbstractBooleanBigList
      Parameters:
      from - the start index (inclusive).
      to - the end index (exclusive).
    • addElements

      public void addElements​(long index, boolean[][] a, long offset, long length)
      Description copied from class: AbstractBooleanBigList
      Add (hopefully quickly) elements to this type-specific big list.

      This is a trivial iterator-based implementation. It is expected that implementations will override this method with a more optimized version.

      Specified by:
      addElements in interface BooleanBigList
      Overrides:
      addElements in class AbstractBooleanBigList
      Parameters:
      index - the index at which to add elements.
      a - the big array containing the elements.
      offset - the offset of the first element to add.
      length - the number of elements to add.
    • listIterator

      public BooleanBigListIterator listIterator​(long index)
      Description copied from class: AbstractBooleanBigList
      Returns a type-specific list iterator on this type-specific big list starting at a given index.
      Specified by:
      listIterator in interface it.unimi.dsi.fastutil.BigList<java.lang.Boolean>
      Specified by:
      listIterator in interface BooleanBigList
      Overrides:
      listIterator in class AbstractBooleanBigList
      See Also:
      BigList.listIterator(long)
    • spliterator

      public BooleanSpliterator spliterator()
      Description copied from interface: BooleanBigList
      Returns a type-specific spliterator on the elements of this big-list.

      BigList spliterators must report at least Spliterator.SIZED and Spliterator.ORDERED.

      See List.spliterator() for more documentation on the requirements of the returned spliterator (despite BigList not being a List, most of the same requirements apply.

      Specified by:
      spliterator in interface BooleanBigList
      Specified by:
      spliterator in interface BooleanCollection
      Specified by:
      spliterator in interface it.unimi.dsi.fastutil.booleans.BooleanIterable
      Specified by:
      spliterator in interface java.util.Collection<java.lang.Boolean>
      Specified by:
      spliterator in interface java.lang.Iterable<java.lang.Boolean>
      Returns:
      a type-specific spliterator on the elements of this collection.
    • subList

      public BooleanBigList subList​(long from, long to)
      Description copied from interface: BooleanBigList
      Returns a type-specific view of the portion of this type-specific big list from the index from, inclusive, to the index to, exclusive.
      Specified by:
      subList in interface it.unimi.dsi.fastutil.BigList<java.lang.Boolean>
      Specified by:
      subList in interface BooleanBigList
      Overrides:
      subList in class AbstractBooleanBigList
      See Also:
      BigList.subList(long,long)
    • rem

      public boolean rem​(boolean k)
      Description copied from class: AbstractBooleanBigList
      Removes a single instance of the specified element from this collection, if it is present (optional operation).
      Specified by:
      rem in interface BooleanCollection
      Overrides:
      rem in class AbstractBooleanBigList
      See Also:
      Collection.remove(Object)
    • addAll

      public boolean addAll​(long index, BooleanCollection c)
      Description copied from class: AbstractBooleanBigList
      Inserts all of the elements in the specified type-specific collection into this type-specific big list at the specified position (optional operation).
      Specified by:
      addAll in interface BooleanBigList
      Overrides:
      addAll in class AbstractBooleanBigList
      See Also:
      List.addAll(int,java.util.Collection)
    • addAll

      public boolean addAll​(long index, BooleanBigList l)
      Description copied from interface: BooleanBigList
      Inserts all of the elements in the specified type-specific big list into this type-specific big list at the specified position (optional operation).
      Specified by:
      addAll in interface BooleanBigList
      See Also:
      BigList.addAll(long,Collection)