Class AbstractLongBigList.LongRandomAccessSubList

    • Constructor Detail

      • LongRandomAccessSubList

        public LongRandomAccessSubList​(LongBigList l,
                                       long from,
                                       long to)
    • Method Detail

      • subList

        public LongBigList subList​(long from,
                                   long to)
        Description copied from interface: LongBigList
        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.Long>
        Specified by:
        subList in interface LongBigList
        Overrides:
        subList in class AbstractLongBigList.LongSubList
        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)