Module org.tquadrat.foundation.util
Class HeadTailListImpl<T>
java.lang.Object
org.tquadrat.foundation.util.internal.HeadTailListImpl<T>
- Type Parameters:
T
- The element type of the list.
- All Implemented Interfaces:
Iterable<T>
,HeadTailList<T>
@ClassVersion(sourceVersion="$Id: HeadTailListImpl.java 1060 2023-09-24 19:21:40Z tquadrat $")
@API(status=INTERNAL,
since="0.0.4")
public final class HeadTailListImpl<T>
extends Object
implements HeadTailList<T>
The implementation for the interface
HeadTailList
- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: HeadTailListImpl.java 1060 2023-09-24 19:21:40Z tquadrat $
- Since:
- 0.0.4
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.util.internal.HeadTailListImpl"
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprivate static class
The implementation of the interfaceIterator
for instances ofHeadTailListImpl
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final HeadTailList
<?> The empty list.private final int
The hash code for this instance.private final T
The head element.private final int
The size of the list.private final HeadTailList
<T> The tail list. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
Creates the emptyHeadTailListImpl
instance.private
HeadTailListImpl
(T head, HeadTailList<T> tail) Creates a newHeadTailListImpl
instance. -
Method Summary
Modifier and TypeMethodDescriptionfinal HeadTailList
<T> Returns a new list with the given element as the head, and this list as the tail.static final <E> HeadTailList
<E> empty()
Returns an empty list.final boolean
final void
forEachReverse
(Consumer<? super T> action) Does the same asIterable.forEach(Consumer)
, but starting with last element first.final int
hashCode()
head()
Returns the head of the list.private final void
internalForEachReverse
(Consumer<? super T> action) This is the implementation offorEachReverse(Consumer)
; splitting this into two methods spares the null-check on each invocation.final boolean
isEmpty()
Checks whether the list is empty.iterator()
final int
size()
Returns the size of the list.final Spliterator
<T> stream()
Returns aStream
that is backed by this list.final HeadTailList
<T> tail()
Returns the tail of the list.final Object[]
toArray()
Returns the contents of this list as an array.final T[]
Returns the contents of this list in the provided array.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
m_HashCode
The hash code for this instance. -
m_Head
The head element. -
m_Size
The size of the list. -
m_Tail
The tail list. -
m_EmptyList
The empty list.
-
-
Constructor Details
-
HeadTailListImpl
private HeadTailListImpl()Creates the emptyHeadTailListImpl
instance. -
HeadTailListImpl
Creates a newHeadTailListImpl
instance.- Parameters:
head
- The head element.tail
- The tail list.
-
-
Method Details
-
add
Returns a new list with the given element as the head, and this list as the tail.- Specified by:
add
in interfaceHeadTailList<T>
- Parameters:
element
- The head for the new list.- Returns:
- The new list.
-
empty
Returns an empty list.
Each call to this method will return the same instance.
- Type Parameters:
E
- The element type for the list.- Returns:
- The empty list.
-
equals
- Specified by:
equals
in interfaceHeadTailList<T>
- Overrides:
equals
in classObject
-
forEachReverse
Does the same asIterable.forEach(Consumer)
, but starting with last element first.- Specified by:
forEachReverse
in interfaceHeadTailList<T>
- Parameters:
action
- The action to perform.
-
internalForEachReverse
This is the implementation offorEachReverse(Consumer)
; splitting this into two methods spares the null-check on each invocation.- Parameters:
action
- The action.
-
hashCode
- Specified by:
hashCode
in interfaceHeadTailList<T>
- Overrides:
hashCode
in classObject
-
head
Returns the head of the list.
This will be empty only for the empty list.
- Specified by:
head
in interfaceHeadTailList<T>
- Returns:
- An instance of
Optional
that holds the head.
-
isEmpty
Checks whether the list is empty.- Specified by:
isEmpty
in interfaceHeadTailList<T>
- Returns:
true
if the list is empty,false
otherwise.
-
iterator
-
size
Returns the size of the list.- Specified by:
size
in interfaceHeadTailList<T>
- Returns:
- The size of the list.
-
spliterator
- Specified by:
spliterator
in interfaceIterable<T>
-
stream
Returns aStream
that is backed by this list.- Specified by:
stream
in interfaceHeadTailList<T>
- Returns:
- The stream.
-
tail
Returns the tail of the list.- Specified by:
tail
in interfaceHeadTailList<T>
- Returns:
- The tail list.
-
toArray
Returns the contents of this list as an array.- Specified by:
toArray
in interfaceHeadTailList<T>
- Returns:
- The array.
-
toArray
Returns the contents of this list in the provided array.
If the provided array is larger that the number of elements on the stack, the exceeding entries on that array remained unchanged.
- Specified by:
toArray
in interfaceHeadTailList<T>
- Parameters:
target
- The target array; if this array has an insufficient size, a new array will be created.- Returns:
- An array with all entries from the list; never
null
. If the provided array was large enough to take all elements, it will be returned, otherwise the returned array is a new one and the provided array is unchanged.
-