Class AbstractIntBigList.IntRandomAccessSubList

java.lang.Object
java.util.AbstractCollection<java.lang.Integer>
All Implemented Interfaces:
BigList<java.lang.Integer>, IntBigList, IntCollection, IntIterable, IntStack, Size64, Stack<java.lang.Integer>, java.io.Serializable, java.lang.Comparable<BigList<? extends java.lang.Integer>>, java.lang.Iterable<java.lang.Integer>, java.util.Collection<java.lang.Integer>, java.util.RandomAccess
Enclosing class:
AbstractIntBigList

public static class AbstractIntBigList.IntRandomAccessSubList
extends AbstractIntBigList.IntSubList
implements java.util.RandomAccess
See Also:
Serialized Form
  • Constructor Details

    • IntRandomAccessSubList

      public IntRandomAccessSubList​(IntBigList l, long from, long to)
  • Method Details

    • subList

      public IntBigList subList​(long from, long to)
      Description copied from interface: IntBigList
      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 BigList<java.lang.Integer>
      Specified by:
      subList in interface IntBigList
      Overrides:
      subList in class AbstractIntBigList.IntSubList
      Parameters:
      from - the starting element (inclusive).
      to - the ending element (exclusive).
      Returns:
      a big sublist view of this big list.
      See Also:
      BigList.subList(long,long)