Package it.unimi.dsi.fastutil.ints
Class IntLists.SynchronizedRandomAccessList
- java.lang.Object
-
- it.unimi.dsi.fastutil.ints.IntCollections.SynchronizedCollection
-
- it.unimi.dsi.fastutil.ints.IntLists.SynchronizedList
-
- it.unimi.dsi.fastutil.ints.IntLists.SynchronizedRandomAccessList
-
- All Implemented Interfaces:
IntCollection,IntIterable,IntList,Serializable,Comparable<List<? extends Integer>>,Iterable<Integer>,Collection<Integer>,List<Integer>,RandomAccess
- Enclosing class:
- IntLists
public static class IntLists.SynchronizedRandomAccessList extends IntLists.SynchronizedList implements RandomAccess, Serializable
A synchronized wrapper class for random-access lists.- See Also:
- Serialized Form
-
-
Method Summary
-
Methods inherited from class it.unimi.dsi.fastutil.ints.IntLists.SynchronizedList
add, add, addAll, addAll, addAll, addAll, addElements, addElements, compareTo, equals, get, getElements, getInt, hashCode, indexOf, indexOf, iterator, lastIndexOf, lastIndexOf, listIterator, listIterator, remove, removeElements, removeInt, set, set, setElements, setElements, setElements, size, sort, sort, unstableSort, unstableSort
-
Methods inherited from class it.unimi.dsi.fastutil.ints.IntCollections.SynchronizedCollection
add, add, addAll, addAll, clear, contains, contains, containsAll, containsAll, isEmpty, rem, remove, removeAll, removeAll, removeIf, retainAll, retainAll, size, toArray, toArray, toArray, toIntArray, toIntArray, toString
-
Methods inherited from interface java.util.Collection
parallelStream, stream, toArray
-
Methods inherited from interface it.unimi.dsi.fastutil.ints.IntCollection
addAll, contains, containsAll, rem, removeAll, removeIf, removeIf, retainAll, toArray, toIntArray, toIntArray
-
Methods inherited from interface it.unimi.dsi.fastutil.ints.IntIterable
forEach, forEach
-
Methods inherited from interface java.util.List
addAll, clear, containsAll, isEmpty, removeAll, replaceAll, retainAll, size, spliterator, toArray, toArray
-
-
-
-
Method Detail
-
subList
public IntList subList(int from, int to)
Description copied from interface:IntListReturns 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:
subListin interfaceIntList- Specified by:
subListin interfaceList<Integer>- Overrides:
subListin classIntLists.SynchronizedList- See Also:
List.subList(int,int)
-
-