Package it.unimi.dsi.fastutil.doubles
Class DoubleLists.UnmodifiableRandomAccessList
java.lang.Object
it.unimi.dsi.fastutil.doubles.DoubleCollections.UnmodifiableCollection
it.unimi.dsi.fastutil.doubles.DoubleLists.UnmodifiableList
it.unimi.dsi.fastutil.doubles.DoubleLists.UnmodifiableRandomAccessList
- All Implemented Interfaces:
DoubleCollection,DoubleIterable,DoubleList,Serializable,Comparable<List<? extends Double>>,Iterable<Double>,Collection<Double>,List<Double>,RandomAccess
- Enclosing class:
- DoubleLists
public static class DoubleLists.UnmodifiableRandomAccessList extends DoubleLists.UnmodifiableList implements RandomAccess, Serializable
An unmodifiable wrapper class for random-access lists.
- See Also:
- Serialized Form
-
Method Summary
Modifier and Type Method Description DoubleListsubList(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.doubles.DoubleLists.UnmodifiableList
add, add, addAll, addAll, addAll, addAll, addElements, addElements, compareTo, equals, get, getDouble, getElements, hashCode, indexOf, indexOf, iterator, lastIndexOf, lastIndexOf, listIterator, listIterator, remove, removeDouble, removeElements, set, set, setElements, setElements, setElements, size, sort, sort, unstableSort, unstableSortMethods inherited from class it.unimi.dsi.fastutil.doubles.DoubleCollections.UnmodifiableCollection
add, add, addAll, addAll, clear, contains, contains, containsAll, containsAll, isEmpty, rem, remove, removeAll, removeAll, retainAll, retainAll, size, toArray, toArray, toArray, toDoubleArray, toDoubleArray, toStringMethods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleCollection
addAll, contains, containsAll, rem, removeAll, removeIf, removeIf, retainAll, toArray, toDoubleArray, toDoubleArrayMethods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleList
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:DoubleListReturns 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 interfaceDoubleList- Specified by:
subListin interfaceList<Double>- Overrides:
subListin classDoubleLists.UnmodifiableList- See Also:
List.subList(int,int)
-