Class AbstractIntBigList.IntRandomAccessSubList

    • Constructor Detail

      • IntRandomAccessSubList

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

      • 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)