Class AbstractIntList.IntSubList
- All Implemented Interfaces:
IntCollection
,IntIterable
,IntList
,IntStack
,Stack<Integer>
,Serializable
,Comparable<List<? extends Integer>>
,Iterable<Integer>
,Collection<Integer>
,List<Integer>
- Enclosing class:
- AbstractIntList
public static class AbstractIntList.IntSubList extends AbstractIntList implements Serializable
- See Also:
- Serialized Form
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.ints.AbstractIntList
AbstractIntList.IntSubList
-
Constructor Summary
Constructors Constructor Description IntSubList(IntList l, int from, int to)
-
Method Summary
Modifier and Type Method Description boolean
add(int k)
Ensures that this collection contains the specified element (optional operation).void
add(int index, int k)
Inserts the specified element at the specified position in this list (optional operation).boolean
addAll(int index, IntCollection c)
Inserts all of the elements in the specified type-specific collection into this type-specific list at the specified position (optional operation).boolean
addAll(int index, IntList l)
Inserts all of the elements in the specified type-specific list into this type-specific list at the specified position (optional operation).boolean
addAll(int index, Collection<? extends Integer> c)
Adds all of the elements in the specified collection to this list (optional operation).void
addElements(int index, int[] a, int offset, int length)
Add (hopefully quickly) elements to this type-specific list.void
getElements(int from, int[] a, int offset, int length)
Copies (hopefully quickly) elements of this type-specific list into the given array.int
getInt(int index)
Returns the element at the specified position in this list.IntListIterator
listIterator(int index)
Returns a type-specific list iterator on the list starting at a given index.boolean
rem(int k)
Removes a single instance of the specified element from this collection, if it is present (optional operation).void
removeElements(int from, int to)
Removes (hopefully quickly) elements of this type-specific list.int
removeInt(int index)
Removes the element at the specified position in this list (optional operation).int
set(int index, int k)
Replaces the element at the specified position in this list with the specified element (optional operation).int
size()
IntList
subList(int from, int to)
Returns a type-specific view of the portion of this list from the indexfrom
, inclusive, to the indexto
, exclusive.Methods inherited from class it.unimi.dsi.fastutil.ints.AbstractIntList
addAll, addAll, addAll, addElements, clear, compareTo, contains, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, peekInt, popInt, push, size, topInt, toString
Methods inherited from class it.unimi.dsi.fastutil.ints.AbstractIntCollection
add, contains, containsAll, remove, removeAll, retainAll, toArray, toIntArray, toIntArray
Methods inherited from class java.util.AbstractCollection
containsAll, isEmpty, removeAll, retainAll, toArray, toArray
Methods inherited from interface java.util.Collection
parallelStream, stream, toArray
Methods inherited from interface it.unimi.dsi.fastutil.ints.IntCollection
containsAll, removeAll, removeIf, removeIf, retainAll, toArray, toIntArray, toIntArray
Methods inherited from interface it.unimi.dsi.fastutil.ints.IntIterable
forEach, forEach
Methods inherited from interface it.unimi.dsi.fastutil.ints.IntList
add, add, contains, get, indexOf, lastIndexOf, remove, remove, set, setElements, setElements, setElements, sort, sort, unstableSort, unstableSort
Methods inherited from interface java.util.List
containsAll, isEmpty, removeAll, replaceAll, retainAll, spliterator, toArray, toArray
-
Constructor Details
-
IntSubList
-
-
Method Details
-
add
public boolean add(int k)Description copied from class:AbstractIntList
Ensures that this collection contains the specified element (optional operation).This implementation always throws an
UnsupportedOperationException
.This implementation delegates to the type-specific version of
List.add(int, Object)
.- Specified by:
add
in interfaceIntCollection
- Specified by:
add
in interfaceIntList
- Overrides:
add
in classAbstractIntList
- See Also:
Collection.add(Object)
-
add
public void add(int index, int k)Description copied from class:AbstractIntList
Inserts the specified element at the specified position in this list (optional operation).This implementation always throws an
UnsupportedOperationException
.- Specified by:
add
in interfaceIntList
- Overrides:
add
in classAbstractIntList
- See Also:
List.add(int,Object)
-
addAll
Description copied from class:AbstractIntList
Adds all of the elements in the specified collection to this list (optional operation).- Specified by:
addAll
in interfaceList<Integer>
- Overrides:
addAll
in classAbstractIntList
-
getInt
public int getInt(int index)Description copied from interface:IntList
Returns the element at the specified position in this list.- Specified by:
getInt
in interfaceIntList
- See Also:
List.get(int)
-
removeInt
public int removeInt(int index)Description copied from class:AbstractIntList
Removes the element at the specified position in this list (optional operation).This implementation always throws an
UnsupportedOperationException
.- Specified by:
removeInt
in interfaceIntList
- Overrides:
removeInt
in classAbstractIntList
- See Also:
List.remove(int)
-
set
public int set(int index, int k)Description copied from class:AbstractIntList
Replaces the element at the specified position in this list with the specified element (optional operation).This implementation always throws an
UnsupportedOperationException
.- Specified by:
set
in interfaceIntList
- Overrides:
set
in classAbstractIntList
- See Also:
List.set(int,Object)
-
size
public int size()- Specified by:
size
in interfaceCollection<Integer>
- Specified by:
size
in interfaceList<Integer>
- Specified by:
size
in classAbstractCollection<Integer>
-
getElements
public void getElements(int from, int[] a, int offset, int length)Description copied from class:AbstractIntList
Copies (hopefully quickly) elements of this type-specific list into the given array.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 interfaceIntList
- Overrides:
getElements
in classAbstractIntList
- Parameters:
from
- the start index (inclusive).a
- the destination array.offset
- the offset into the destination array where to store the first element copied.length
- the number of elements to be copied.
-
removeElements
public void removeElements(int from, int to)Description copied from class:AbstractIntList
Removes (hopefully quickly) elements of this type-specific 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 interfaceIntList
- Overrides:
removeElements
in classAbstractIntList
- Parameters:
from
- the start index (inclusive).to
- the end index (exclusive).
-
addElements
public void addElements(int index, int[] a, int offset, int length)Description copied from class:AbstractIntList
Add (hopefully quickly) elements to this type-specific list.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 interfaceIntList
- Overrides:
addElements
in classAbstractIntList
- Parameters:
index
- the index at which to add elements.a
- the array containing the elements.offset
- the offset of the first element to add.length
- the number of elements to add.
-
listIterator
Description copied from class:AbstractIntList
Returns a type-specific list iterator on the list starting at a given index.This implementation is based on the random-access methods.
- Specified by:
listIterator
in interfaceIntList
- Specified by:
listIterator
in interfaceList<Integer>
- Overrides:
listIterator
in classAbstractIntList
- See Also:
List.listIterator(int)
-
subList
Description copied from interface:IntList
Returns a type-specific view of the portion of this list from the indexfrom
, inclusive, to the indexto
, exclusive.Note that this specification strengthens the one given in
List.subList(int,int)
.- Specified by:
subList
in interfaceIntList
- Specified by:
subList
in interfaceList<Integer>
- Overrides:
subList
in classAbstractIntList
- See Also:
List.subList(int,int)
-
rem
public boolean rem(int k)Description copied from class:AbstractIntList
Removes a single instance of the specified element from this collection, if it is present (optional operation).This implementation delegates to
indexOf()
.- Specified by:
rem
in interfaceIntCollection
- Overrides:
rem
in classAbstractIntList
- See Also:
List.remove(Object)
-
addAll
Description copied from interface:IntList
Inserts all of the elements in the specified type-specific collection into this type-specific list at the specified position (optional operation).- Specified by:
addAll
in interfaceIntList
- Overrides:
addAll
in classAbstractIntList
- See Also:
List.addAll(int,java.util.Collection)
-
addAll
Description copied from class:AbstractIntList
Inserts all of the elements in the specified type-specific list into this type-specific list at the specified position (optional operation).This implementation delegates to the type-specific version of
List.addAll(int, Collection)
.- Specified by:
addAll
in interfaceIntList
- Overrides:
addAll
in classAbstractIntList
- See Also:
List.add(int,Object)
-