@Generated(date="2015-05-07T09:33:04+0200",
value="KTypeArrayDeque.java")
public class FloatArrayDeque
extends java.lang.Object
implements FloatDeque, Preallocable, java.lang.Cloneable
FloatDeque.| Modifier and Type | Field and Description |
|---|---|
float[] |
buffer
Internal array for storing elements of the deque.
|
int |
head
The index of the element at the head of the deque or an arbitrary number
equal to tail if the deque is empty.
|
protected ArraySizingStrategy |
resizer
Buffer resizing strategy.
|
int |
tail
The index at which the next element would be added to the tail of the
deque.
|
| Constructor and Description |
|---|
FloatArrayDeque()
New instance with sane defaults.
|
FloatArrayDeque(FloatContainer container)
Creates a new deque from elements of another container, appending elements at
the end of the deque in the iteration order.
|
FloatArrayDeque(int expectedElements)
New instance with sane defaults.
|
FloatArrayDeque(int expectedElements,
ArraySizingStrategy resizer)
New instance with sane defaults.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addFirst(float... elements)
Vararg-signature method for adding elements at the front of this deque.
|
void |
addFirst(float e1)
Inserts the specified element at the front of this deque.
|
int |
addFirst(FloatContainer container)
Inserts all elements from the given container to the front of this deque.
|
int |
addFirst(java.lang.Iterable<? extends FloatCursor> iterable)
Inserts all elements from the given iterable to the front of this deque.
|
void |
addLast(float... elements)
Vararg-signature method for adding elements at the end of this deque.
|
void |
addLast(float e1)
Inserts the specified element at the end of this deque.
|
int |
addLast(FloatContainer container)
Inserts all elements from the given container to the end of this deque.
|
int |
addLast(java.lang.Iterable<? extends FloatCursor> iterable)
Inserts all elements from the given iterable to the end of this deque.
|
int |
bufferIndexOf(float e1)
Return the index of the first (counting from head) element equal to
e1. |
void |
clear()
Removes all elements from this collection.
|
FloatArrayDeque |
clone()
Clone this object.
|
boolean |
contains(float e)
Lookup a given element in the container.
|
<T extends FloatPredicate> |
descendingForEach(T predicate)
Applies a
predicate to container elements as long, as the
predicate returns true. |
<T extends FloatProcedure> |
descendingForEach(T procedure)
Applies
procedure to all elements of this deque, tail to head. |
java.util.Iterator<FloatCursor> |
descendingIterator()
Returns a cursor over the values of this deque (in tail to head order).
|
protected void |
ensureBufferSpace(int expectedAdditions)
Ensures the internal buffer has enough free slots to store
expectedAdditions. |
void |
ensureCapacity(int expectedElements)
Ensure this container can hold at least the given number of elements
without resizing its buffers.
|
protected boolean |
equalElements(FloatArrayDeque other)
Compare order-aligned elements against another
FloatDeque. |
boolean |
equals(java.lang.Object obj)
Returns
true only if the other object is an instance of
the same class and with the same elements. |
<T extends FloatPredicate> |
forEach(T predicate)
Applies a
predicate to container elements as long, as the
predicate returns true. |
<T extends FloatProcedure> |
forEach(T procedure)
Applies a
procedure to all container elements. |
static FloatArrayDeque |
from(float... elements)
Create a new deque by pushing a variable number of arguments to the end of it.
|
float |
getFirst()
Retrieves the first element of this deque but does not remove it.
|
float |
getLast()
Retrieves the last element of this deque but does not remove it.
|
int |
hashCode() |
boolean |
isEmpty()
Shortcut for
size() == 0. |
java.util.Iterator<FloatCursor> |
iterator()
Returns a cursor over the values of this deque (in head to tail order).
|
int |
lastBufferIndexOf(float e1)
Return the index of the last (counting from tail) element equal to
e1. |
protected static int |
oneLeft(int index,
int modulus)
Move one index to the left, wrapping around buffer.
|
protected static int |
oneRight(int index,
int modulus)
Move one index to the right, wrapping around buffer.
|
void |
release()
Release internal buffers of this deque and reallocate with the default
buffer.
|
int |
removeAll(float e1)
Removes all occurrences of
e from this collection. |
int |
removeAll(FloatLookupContainer c)
Default implementation uses a predicate for removal.
|
int |
removeAll(FloatPredicate predicate)
Removes all elements in this collection for which the given predicate
returns
true. |
void |
removeAtBufferIndex(int index)
Removes the element at
index in the internal {#link
buffer array, returning its value. |
float |
removeFirst()
Retrieves and removes the first element of this deque.
|
int |
removeFirst(float e1)
Removes the first element that equals
e. |
float |
removeLast()
Retrieves and removes the last element of this deque.
|
int |
removeLast(float e1)
Removes the last element that equals
e. |
int |
retainAll(FloatLookupContainer c)
Default implementation uses a predicate for retaining.
|
int |
retainAll(FloatPredicate predicate)
Default implementation redirects to
FloatCollection.removeAll(FloatPredicate) and
negates the predicate. |
int |
size()
Return the current number of elements in this container.
|
float[] |
toArray()
Default implementation of copying to an array.
|
float[] |
toArray(float[] target)
Copies elements of this deque to an array.
|
java.lang.String |
toString()
Convert the contents of this container to a human-friendly string.
|
finalize, getClass, notify, notifyAll, wait, wait, waitremoveAll, retainAll, retainAllpublic float[] buffer
public int head
public int tail
protected final ArraySizingStrategy resizer
public FloatArrayDeque()
public FloatArrayDeque(int expectedElements)
expectedElements - The expected number of elements guaranteed not to cause buffer
expansion (inclusive).public FloatArrayDeque(int expectedElements,
ArraySizingStrategy resizer)
expectedElements - The expected number of elements guaranteed not to cause buffer
expansion (inclusive).resizer - Underlying buffer sizing strategy.public FloatArrayDeque(FloatContainer container)
public void addFirst(float e1)
addFirst in interface FloatDequepublic final void addFirst(float... elements)
This method is handy, but costly if used in tight loops (anonymous array passing)
elements - The elements to add.public int addFirst(FloatContainer container)
container - The container to iterate over.public int addFirst(java.lang.Iterable<? extends FloatCursor> iterable)
iterable - The iterable to iterate over.public void addLast(float e1)
addLast in interface FloatDequepublic final void addLast(float... elements)
This method is handy, but costly if used in tight loops (anonymous array passing)
elements - The elements to iterate over.public int addLast(FloatContainer container)
container - The container to iterate over.public int addLast(java.lang.Iterable<? extends FloatCursor> iterable)
iterable - The iterable to iterate over.public float removeFirst()
removeFirst in interface FloatDequepublic float removeLast()
removeLast in interface FloatDequepublic float getFirst()
getFirst in interface FloatDequepublic float getLast()
getLast in interface FloatDequepublic int removeFirst(float e1)
e.removeFirst in interface FloatDeque-1 if the element
was not found.public int bufferIndexOf(float e1)
e1. The index points to the buffer array.e1 - The element to look for.e1 or
-1 if not found.public int removeLast(float e1)
e.removeLast in interface FloatDeque-1 if the element
was not found.public int lastBufferIndexOf(float e1)
e1. The index points to the buffer array.e1 - The element to look for.e1 or
-1 if not found.public int removeAll(float e1)
e from this collection.removeAll in interface FloatCollectione1 - Element to be removed from this collection, if present.public void removeAtBufferIndex(int index)
index in the internal {#link
buffer array, returning its value.public boolean isEmpty()
size() == 0.isEmpty in interface FloatContainerpublic int size()
O(n) time, although
implementing classes should try to maintain the current size and return in
constant time.size in interface FloatContainerpublic void clear()
The internal array buffers are not released as a result of this call.
clear in interface FloatCollectionrelease()public void release()
release in interface FloatCollectionFloatCollection.clear()public void ensureCapacity(int expectedElements)
ensureCapacity in interface PreallocableexpectedElements - The total number of elements, inclusive.protected void ensureBufferSpace(int expectedAdditions)
expectedAdditions. Increases internal buffer size if needed.public float[] toArray()
toArray in interface FloatContainerpublic float[] toArray(float[] target)
target array is filled from index 0 (head of the queue) to
index size() - 1 (tail of the queue).target - The target array must be large enough to hold all elements.public FloatArrayDeque clone()
clone in class java.lang.Objectprotected static int oneLeft(int index,
int modulus)
protected static int oneRight(int index,
int modulus)
public java.util.Iterator<FloatCursor> iterator()
Iterator.next() (to avoid boxing of
primitive types). To read the current value (or index in the deque's
buffer) use the cursor's public fields. An example is shown below.
for (IntValueCursor c : intDeque) {
System.out.println("buffer index=" + c.index + " value=" + c.value);
}
iterator in interface FloatContaineriterator in interface java.lang.Iterable<FloatCursor>public java.util.Iterator<FloatCursor> descendingIterator()
Iterator.next() (to avoid boxing of
primitive types). To read the current value (or index in the deque's
buffer) use the cursor's public fields. An example is shown below.
for (Iterator<IntCursor> i = intDeque.descendingIterator(); i.hasNext();) {
final IntCursor c = i.next();
System.out.println("buffer index=" + c.index + " value=" + c.value);
}
descendingIterator in interface FloatDequepublic <T extends FloatProcedure> T forEach(T procedure)
procedure to all container elements. Returns the
argument (any subclass of FloatProcedure. This lets the caller to
call methods of the argument by chaining the call (even if the argument is
an anonymous type) to retrieve computed values, for example (IntContainer):
int count = container.forEach(new IntProcedure() {
int count; // this is a field declaration in an anonymous class.
public void apply(int value) {
count++;
}
}).count;
forEach in interface FloatContainerpublic <T extends FloatPredicate> T forEach(T predicate)
predicate to container elements as long, as the
predicate returns true. The iteration is interrupted
otherwise.forEach in interface FloatContainerpublic <T extends FloatProcedure> T descendingForEach(T procedure)
procedure to all elements of this deque, tail to head.descendingForEach in interface FloatDequepublic <T extends FloatPredicate> T descendingForEach(T predicate)
predicate to container elements as long, as the
predicate returns true. The iteration is interrupted
otherwise.descendingForEach in interface FloatDequepublic int removeAll(FloatPredicate predicate)
true.removeAll in interface FloatCollectionpublic boolean contains(float e)
contains in interface FloatContainertrue if this container has an element equal to
e.public int hashCode()
hashCode in class java.lang.Objectpublic boolean equals(java.lang.Object obj)
true only if the other object is an instance of
the same class and with the same elements.equals in class java.lang.Objectprotected boolean equalElements(FloatArrayDeque other)
FloatDeque.public static FloatArrayDeque from(float... elements)
public int removeAll(FloatLookupContainer c)
removeAll in interface FloatCollectionpublic int retainAll(FloatLookupContainer c)
retainAll in interface FloatCollectionpublic int retainAll(FloatPredicate predicate)
FloatCollection.removeAll(FloatPredicate) and
negates the predicate.retainAll in interface FloatCollectionpublic java.lang.String toString()
toString in class java.lang.ObjectCopyright © 2015 Carrot Search s.c.. All Rights Reserved.