|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.util.AbstractCollection<java.lang.Double>
it.unimi.dsi.fastutil.doubles.AbstractDoubleCollection
it.unimi.dsi.fastutil.doubles.AbstractDoubleBigList
it.unimi.dsi.fastutil.doubles.AbstractDoubleBigList.DoubleSubList
public static class AbstractDoubleBigList.DoubleSubList
Nested Class Summary |
---|
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.doubles.AbstractDoubleBigList |
---|
AbstractDoubleBigList.DoubleSubList |
Constructor Summary | |
---|---|
AbstractDoubleBigList.DoubleSubList(DoubleBigList l,
long from,
long to)
|
Method Summary | |
---|---|
boolean |
add(double k)
|
void |
add(long index,
double k)
|
boolean |
addAll(long index,
java.util.Collection<? extends java.lang.Double> c)
Inserts all of the elements in the specified collection into this big list at the specified position (optional operation). |
boolean |
addAll(long index,
DoubleCollection c)
Delegates to a more generic method. |
boolean |
addAll(long index,
DoubleList l)
|
void |
addElements(long index,
double[][] a,
long offset,
long length)
Adds elements to this type-specific big list one-by-one. |
void |
clear()
|
double |
getDouble(long index)
|
void |
getElements(long from,
double[][] a,
long offset,
long length)
Copies element of this type-specific big list into the given big array one-by-one. |
DoubleBigListIterator |
listIterator(long index)
Returns a type-specific list iterator on this type-specific big list starting at a given index. |
boolean |
rem(double 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. |
double |
removeDouble(long index)
|
void |
removeElements(long from,
long to)
Removes elements of this type-specific big list one-by-one. |
double |
set(long index,
double k)
|
long |
size64()
Returns the size of this data structure as a long. |
DoubleBigList |
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.doubles.AbstractDoubleBigList |
---|
add, addAll, addAll, addAll, addAll, addAll, addElements, compareTo, contains, equals, get, getDouble, hashCode, indexOf, indexOf, iterator, lastIndexOf, lastIndexOf, listIterator, listIterator, peek, peekDouble, pop, popDouble, push, push, remove, remove, removeDouble, set, set, size, size, size, top, topDouble, toString |
Methods inherited from class it.unimi.dsi.fastutil.doubles.AbstractDoubleCollection |
---|
add, contains, containsAll, containsAll, doubleIterator, isEmpty, rem, removeAll, removeAll, retainAll, retainAll, toArray, toArray, toArray, toDoubleArray, toDoubleArray |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleCollection |
---|
containsAll, doubleIterator, removeAll, retainAll, toArray, toArray, toDoubleArray, toDoubleArray |
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 |
---|
public AbstractDoubleBigList.DoubleSubList(DoubleBigList l, long from, long to)
Method Detail |
---|
public boolean add(double k)
add
in interface DoubleCollection
add
in class AbstractDoubleBigList
Collection.add(Object)
public void add(long index, double k)
add
in interface DoubleBigList
add
in class AbstractDoubleBigList
List.add(int,Object)
public boolean addAll(long index, java.util.Collection<? extends java.lang.Double> c)
BigList
addAll
in interface BigList<java.lang.Double>
addAll
in class AbstractDoubleBigList
index
- index at which to insert the first element from the specified collection.c
- collection containing elements to be added to this big list.
true
if this big list changed as a result of the callList.addAll(int, Collection)
public double getDouble(long index)
getDouble
in interface DoubleBigList
BigList.get(long)
public double removeDouble(long index)
removeDouble
in interface DoubleBigList
removeDouble
in class AbstractDoubleBigList
BigList.remove(long)
public double set(long index, double k)
set
in interface DoubleBigList
set
in class AbstractDoubleBigList
BigList.set(long,Object)
public void clear()
clear
in interface java.util.Collection<java.lang.Double>
clear
in class java.util.AbstractCollection<java.lang.Double>
public long size64()
Size64
size64
in interface Size64
public void getElements(long from, double[][] a, long offset, long length)
AbstractDoubleBigList
This is a trivial iterator-based implementation. It is expected that implementations will override this method with a more optimized version.
getElements
in interface DoubleBigList
getElements
in class AbstractDoubleBigList
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.public void removeElements(long from, long to)
AbstractDoubleBigList
This is a trivial iterator-based implementation. It is expected that implementations will override this method with a more optimized version.
removeElements
in interface DoubleBigList
removeElements
in class AbstractDoubleBigList
from
- the start index (inclusive).to
- the end index (exclusive).public void addElements(long index, double[][] a, long offset, long length)
AbstractDoubleBigList
This is a trivial iterator-based implementation. It is expected that implementations will override this method with a more optimized version.
addElements
in interface DoubleBigList
addElements
in class AbstractDoubleBigList
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.public DoubleBigListIterator listIterator(long index)
DoubleBigList
listIterator
in interface BigList<java.lang.Double>
listIterator
in interface DoubleBigList
listIterator
in class AbstractDoubleBigList
index
- index of first element to be returned from the big-list iterator.
BigList.listIterator(long)
public DoubleBigList subList(long from, long to)
DoubleBigList
from
, inclusive, to the index to
, exclusive.
Note that this specification strengthens the one given in BigList.subList(long,long)
.
subList
in interface BigList<java.lang.Double>
subList
in interface DoubleBigList
subList
in class AbstractDoubleBigList
from
- the starting element (inclusive).to
- the ending element (exclusive).
BigList.subList(long,long)
public boolean rem(double k)
DoubleCollection
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()
.
rem
in interface DoubleCollection
rem
in class AbstractDoubleBigList
Collection.remove(Object)
public boolean remove(java.lang.Object o)
AbstractDoubleCollection
rem()
method.
remove
in interface java.util.Collection<java.lang.Double>
remove
in class AbstractDoubleCollection
public boolean addAll(long index, DoubleCollection c)
AbstractDoubleBigList
addAll
in interface DoubleBigList
addAll
in class AbstractDoubleBigList
List.addAll(int,java.util.Collection)
public boolean addAll(long index, DoubleList l)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |