Class IntBigLists.ListBigList

    • Method Detail

      • size64

        public long size64()
        Description copied from interface: Size64
        Returns the size of this data structure as a long.
        Specified by:
        size64 in interface Size64
        Returns:
        the size of this data structure.
      • size

        public void size​(long size)
        Description copied from interface: BigList
        Sets the size of this big list.

        If the specified size is smaller than the current size, the last elements are discarded. Otherwise, they are filled with 0/null/false.

        Specified by:
        size in interface BigList<java.lang.Integer>
        Overrides:
        size in class AbstractIntBigList
        Parameters:
        size - the new size.
      • iterator

        public IntBigListIterator iterator()
        Description copied from class: AbstractIntBigList
        Returns a type-specific iterator on the elements of this collection.
        Specified by:
        iterator in interface java.util.Collection<java.lang.Integer>
        Specified by:
        iterator in interface IntBigList
        Specified by:
        iterator in interface IntCollection
        Specified by:
        iterator in interface IntIterable
        Specified by:
        iterator in interface java.lang.Iterable<java.lang.Integer>
        Overrides:
        iterator in class AbstractIntBigList
        Returns:
        a type-specific iterator on the elements of this collection.
        See Also:
        Iterable.iterator()
      • addAll

        public boolean addAll​(long index,
                              java.util.Collection<? extends java.lang.Integer> c)
        Description copied from class: AbstractIntBigList
        Adds all of the elements in the specified collection to this list (optional operation).
        Specified by:
        addAll in interface BigList<java.lang.Integer>
        Overrides:
        addAll in class AbstractIntBigList
        Parameters:
        index - index at which to insert the first element from the specified collection.
        c - collection containing elements to be added to this big list.
        Returns:
        true if this big list changed as a result of the call
        See Also:
        List.addAll(int, Collection)
      • 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
        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)
      • toIntArray

        public int[] toIntArray()
        Description copied from interface: IntCollection
        Returns a primitive type array containing the items of this collection.
        Specified by:
        toIntArray in interface IntCollection
        Overrides:
        toIntArray in class AbstractIntCollection
        Returns:
        a primitive type array containing the items of this collection.
        See Also:
        Collection.toArray()
      • removeElements

        public void removeElements​(long from,
                                   long to)
        Description copied from class: AbstractIntBigList
        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 IntBigList
        Overrides:
        removeElements in class AbstractIntBigList
        Parameters:
        from - the start index (inclusive).
        to - the end index (exclusive).
      • toIntArray

        @Deprecated
        public int[] toIntArray​(int[] a)
        Deprecated.
        Description copied from class: AbstractIntCollection
        Returns a primitive type array containing the items of this collection.

        Note that, contrarily to Collection.toArray(Object[]), this methods just writes all elements of this collection: no special value will be added after the last one.

        Specified by:
        toIntArray in interface IntCollection
        Overrides:
        toIntArray in class AbstractIntCollection
        Parameters:
        a - if this array is big enough, it will be used to store this collection.
        Returns:
        a primitive type array containing the items of this collection.
        See Also:
        Collection.toArray(Object[])
      • addAll

        public boolean addAll​(long index,
                              IntCollection c)
        Description copied from class: AbstractIntBigList
        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 IntBigList
        Overrides:
        addAll in class AbstractIntBigList
        See Also:
        List.addAll(int,java.util.Collection)
      • addAll

        public boolean addAll​(IntCollection c)
        Description copied from class: AbstractIntBigList
        Adds all elements of the given type-specific collection to this collection.
        Specified by:
        addAll in interface IntCollection
        Overrides:
        addAll in class AbstractIntBigList
        Parameters:
        c - a type-specific collection.
        Returns:
        true if this collection changed as a result of the call.
        See Also:
        Collection.addAll(Collection)
      • addAll

        public boolean addAll​(long index,
                              IntBigList c)
        Description copied from interface: IntBigList
        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 IntBigList
        See Also:
        BigList.addAll(long,Collection)
      • addAll

        public boolean addAll​(IntBigList c)
        Description copied from interface: IntBigList
        Appends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).
        Specified by:
        addAll in interface IntBigList
        See Also:
        Collection.addAll(Collection)
      • containsAll

        public boolean containsAll​(IntCollection c)
        Description copied from interface: IntCollection
        Checks whether this collection contains all elements from the given type-specific collection.
        Specified by:
        containsAll in interface IntCollection
        Overrides:
        containsAll in class AbstractIntCollection
        Parameters:
        c - a type-specific collection.
        Returns:
        true if this collection contains all elements of the argument.
        See Also:
        Collection.containsAll(Collection)
      • removeAll

        public boolean removeAll​(IntCollection c)
        Description copied from interface: IntCollection
        Remove from this collection all elements in the given type-specific collection.
        Specified by:
        removeAll in interface IntCollection
        Overrides:
        removeAll in class AbstractIntCollection
        Parameters:
        c - a type-specific collection.
        Returns:
        true if this collection changed as a result of the call.
        See Also:
        Collection.removeAll(Collection)
      • retainAll

        public boolean retainAll​(IntCollection c)
        Description copied from interface: IntCollection
        Retains in this collection only elements from the given type-specific collection.
        Specified by:
        retainAll in interface IntCollection
        Overrides:
        retainAll in class AbstractIntCollection
        Parameters:
        c - a type-specific collection.
        Returns:
        true if this collection changed as a result of the call.
        See Also:
        Collection.retainAll(Collection)
      • add

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

        public boolean isEmpty()
        Description copied from interface: Stack
        Checks whether the stack is empty.
        Specified by:
        isEmpty in interface java.util.Collection<java.lang.Integer>
        Specified by:
        isEmpty in interface Stack<java.lang.Integer>
        Overrides:
        isEmpty in class java.util.AbstractCollection<java.lang.Integer>
        Returns:
        true if the stack is empty.
      • toArray

        public <T> T[] toArray​(T[] a)
        Specified by:
        toArray in interface java.util.Collection<java.lang.Integer>
        Overrides:
        toArray in class java.util.AbstractCollection<java.lang.Integer>
      • addAll

        public boolean addAll​(java.util.Collection<? extends java.lang.Integer> c)
        Description copied from class: AbstractIntBigList
        Specified by:
        addAll in interface java.util.Collection<java.lang.Integer>
        Overrides:
        addAll in class AbstractIntBigList
      • removeAll

        public boolean removeAll​(java.util.Collection<?> c)
        Description copied from class: AbstractIntCollection
        Specified by:
        removeAll in interface java.util.Collection<java.lang.Integer>
        Overrides:
        removeAll in class AbstractIntCollection
      • retainAll

        public boolean retainAll​(java.util.Collection<?> c)
        Description copied from class: AbstractIntCollection
        Specified by:
        retainAll in interface java.util.Collection<java.lang.Integer>
        Overrides:
        retainAll in class AbstractIntCollection
      • hashCode

        public int hashCode()
        Description copied from class: AbstractIntBigList
        Returns the hash code for this big list, which is identical to List.hashCode().
        Specified by:
        hashCode in interface java.util.Collection<java.lang.Integer>
        Overrides:
        hashCode in class AbstractIntBigList
        Returns:
        the hash code for this big list.