Package it.unimi.dsi.fastutil.booleans
Class BooleanLists.SynchronizedRandomAccessList
java.lang.Object
it.unimi.dsi.fastutil.booleans.BooleanCollections.SynchronizedCollection
it.unimi.dsi.fastutil.booleans.BooleanLists.SynchronizedList
it.unimi.dsi.fastutil.booleans.BooleanLists.SynchronizedRandomAccessList
- All Implemented Interfaces:
BooleanCollection,BooleanIterable,BooleanList,Serializable,Comparable<List<? extends Boolean>>,Iterable<Boolean>,Collection<Boolean>,List<Boolean>,RandomAccess
- Enclosing class:
- BooleanLists
public static class BooleanLists.SynchronizedRandomAccessList extends BooleanLists.SynchronizedList implements RandomAccess, Serializable
A synchronized wrapper class for random-access lists.
- See Also:
- Serialized Form
-
Method Summary
Modifier and Type Method Description BooleanListsubList(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.booleans.BooleanLists.SynchronizedList
add, add, addAll, addAll, addAll, addAll, addElements, addElements, compareTo, equals, get, getBoolean, getElements, hashCode, indexOf, indexOf, iterator, lastIndexOf, lastIndexOf, listIterator, listIterator, remove, removeBoolean, removeElements, set, set, setElements, setElements, setElements, size, sort, sort, unstableSort, unstableSortMethods inherited from class it.unimi.dsi.fastutil.booleans.BooleanCollections.SynchronizedCollection
add, add, addAll, addAll, clear, contains, contains, containsAll, containsAll, isEmpty, rem, remove, removeAll, removeAll, retainAll, retainAll, size, toArray, toArray, toArray, toBooleanArray, toBooleanArray, toStringMethods inherited from interface it.unimi.dsi.fastutil.booleans.BooleanCollection
addAll, contains, containsAll, rem, removeAll, retainAll, toArray, toBooleanArray, toBooleanArrayMethods inherited from interface it.unimi.dsi.fastutil.booleans.BooleanList
add, add, contains, removeMethods inherited from interface java.util.List
addAll, clear, containsAll, isEmpty, removeAll, replaceAll, retainAll, size, spliterator, toArray, toArray
-
Method Details
-
subList
Description copied from interface:BooleanListReturns 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 interfaceBooleanList- Specified by:
subListin interfaceList<Boolean>- Overrides:
subListin classBooleanLists.SynchronizedList- See Also:
List.subList(int,int)
-