it.unimi.dsi.fastutil.ints
Class AbstractIntBigList.IntSubList

java.lang.Object
  extended by java.util.AbstractCollection<java.lang.Integer>
      extended by it.unimi.dsi.fastutil.ints.AbstractIntCollection
          extended by it.unimi.dsi.fastutil.ints.AbstractIntBigList
              extended by it.unimi.dsi.fastutil.ints.AbstractIntBigList.IntSubList
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>
Enclosing class:
AbstractIntBigList

public static class AbstractIntBigList.IntSubList
extends AbstractIntBigList
implements java.io.Serializable

See Also:
Serialized Form

Nested Class Summary
 
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.ints.AbstractIntBigList
AbstractIntBigList.IntSubList
 
Constructor Summary
AbstractIntBigList.IntSubList(IntBigList l, long from, long to)
           
 
Method Summary
 boolean add(int k)
           
 void add(long index, int k)
           
 boolean addAll(long index, java.util.Collection<? extends java.lang.Integer> c)
          Inserts all of the elements in the specified collection into this big list at the specified position (optional operation).
 boolean addAll(long index, IntCollection c)
          Delegates to a more generic method.
 boolean addAll(long index, IntList l)
           
 void addElements(long index, int[][] a, long offset, long length)
          Adds elements to this type-specific big list one-by-one.
 void clear()
           
 void getElements(long from, int[][] a, long offset, long length)
          Copies element of this type-specific big list into the given big array one-by-one.
 int getInt(long index)
           
 IntBigListIterator listIterator(long index)
          Returns a type-specific list iterator on this type-specific big list starting at a given index.
 boolean rem(int k)
          Note that this method should be called remove(), but the clash with the similarly named index-based method in the List interface forces us to use a distinguished name.
 boolean remove(java.lang.Object o)
          Delegates to the type-specific rem() method.
 void removeElements(long from, long to)
          Removes elements of this type-specific big list one-by-one.
 int removeInt(long index)
           
 int set(long index, int k)
           
 long size64()
          Returns the size of this data structure as a long.
 IntBigList subList(long from, long to)
          Returns a type-specific view of the portion of this type-specific big list from the index from, inclusive, to the index to, exclusive.
 
Methods inherited from class it.unimi.dsi.fastutil.ints.AbstractIntBigList
add, addAll, addAll, addAll, addAll, addAll, addElements, compareTo, contains, equals, get, getInt, hashCode, indexOf, indexOf, iterator, lastIndexOf, lastIndexOf, listIterator, listIterator, peek, peekInt, pop, popInt, push, push, remove, remove, removeInt, set, set, size, size, size, top, topInt, toString
 
Methods inherited from class it.unimi.dsi.fastutil.ints.AbstractIntCollection
add, contains, containsAll, containsAll, intIterator, isEmpty, rem, removeAll, removeAll, retainAll, retainAll, toArray, toArray, toArray, toIntArray, toIntArray
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface it.unimi.dsi.fastutil.ints.IntCollection
containsAll, intIterator, removeAll, retainAll, toArray, toArray, toIntArray, toIntArray
 
Methods inherited from interface java.util.Collection
add, contains, containsAll, isEmpty, removeAll, retainAll, toArray
 
Methods inherited from interface it.unimi.dsi.fastutil.Stack
isEmpty
 

Constructor Detail

AbstractIntBigList.IntSubList

public AbstractIntBigList.IntSubList(IntBigList l,
                                     long from,
                                     long to)
Method Detail

add

public boolean add(int k)
Specified by:
add in interface IntCollection
Overrides:
add in class AbstractIntBigList
See Also:
Collection.add(Object)

add

public void add(long index,
                int k)
Specified by:
add in interface IntBigList
Overrides:
add in class AbstractIntBigList
See Also:
List.add(int,Object)

addAll

public boolean addAll(long index,
                      java.util.Collection<? extends java.lang.Integer> c)
Description copied from interface: BigList
Inserts all of the elements in the specified collection into this big list at the specified position (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)

getInt

public int getInt(long index)
Specified by:
getInt in interface IntBigList
See Also:
BigList.get(long)

removeInt

public int removeInt(long index)
Specified by:
removeInt in interface IntBigList
Overrides:
removeInt in class AbstractIntBigList
See Also:
BigList.remove(long)

set

public int set(long index,
               int k)
Specified by:
set in interface IntBigList
Overrides:
set in class AbstractIntBigList
See Also:
BigList.set(long,Object)

clear

public void clear()
Specified by:
clear in interface java.util.Collection<java.lang.Integer>
Overrides:
clear in class java.util.AbstractCollection<java.lang.Integer>

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.

getElements

public void getElements(long from,
                        int[][] a,
                        long offset,
                        long length)
Description copied from class: AbstractIntBigList
Copies element of this type-specific big list into the given big array one-by-one.

This is a trivial iterator-based implementation. It is expected that implementations will override this method with a more optimized version.

Specified by:
getElements in interface IntBigList
Overrides:
getElements in class AbstractIntBigList
Parameters:
from - the start index (inclusive).
a - the destination big array.
offset - the offset into the destination big array where to store the first element copied.
length - the number of elements to be copied.

removeElements

public void removeElements(long from,
                           long to)
Description copied from class: AbstractIntBigList
Removes elements of this type-specific big list one-by-one.

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

addElements

public void addElements(long index,
                        int[][] a,
                        long offset,
                        long length)
Description copied from class: AbstractIntBigList
Adds elements to this type-specific big list one-by-one.

This is a trivial iterator-based implementation. It is expected that implementations will override this method with a more optimized version.

Specified by:
addElements in interface IntBigList
Overrides:
addElements in class AbstractIntBigList
Parameters:
index - the index at which to add elements.
a - the big array containing the elements.
offset - the offset of the first element to add.
length - the number of elements to add.

listIterator

public IntBigListIterator listIterator(long index)
Description copied from interface: IntBigList
Returns a type-specific list iterator on this type-specific big list starting at a given index.

Specified by:
listIterator in interface BigList<java.lang.Integer>
Specified by:
listIterator in interface IntBigList
Overrides:
listIterator in class AbstractIntBigList
Parameters:
index - index of first element to be returned from the big-list iterator.
Returns:
a big-list iterator of the elements in this big list, starting at the specified position in this big list.
See Also:
BigList.listIterator(long)

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.

Note that this specification strengthens the one given in BigList.subList(long,long).

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)

rem

public boolean rem(int k)
Description copied from interface: IntCollection
Note that this method should be called remove(), but the clash with the similarly named index-based method in the List interface forces us to use a distinguished name. For simplicity, the set interfaces reinstates remove().

Specified by:
rem in interface IntCollection
Overrides:
rem in class AbstractIntBigList
See Also:
Collection.remove(Object)

remove

public boolean remove(java.lang.Object o)
Description copied from class: AbstractIntCollection
Delegates to the type-specific rem() method.

Specified by:
remove in interface java.util.Collection<java.lang.Integer>
Overrides:
remove in class AbstractIntCollection

addAll

public boolean addAll(long index,
                      IntCollection c)
Description copied from class: AbstractIntBigList
Delegates to a more generic method.

Specified by:
addAll in interface IntBigList
Overrides:
addAll in class AbstractIntBigList
See Also:
List.addAll(int,java.util.Collection)

addAll

public boolean addAll(long index,
                      IntList l)