Class AbstractByteBigList.ByteRandomAccessSubList

    • Constructor Detail

      • ByteRandomAccessSubList

        public ByteRandomAccessSubList​(ByteBigList l,
                                       long from,
                                       long to)
    • Method Detail

      • subList

        public ByteBigList subList​(long from,
                                   long to)
        Description copied from interface: ByteBigList
        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.Byte>
        Specified by:
        subList in interface ByteBigList
        Overrides:
        subList in class AbstractByteBigList.ByteSubList
        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)