Interface XPrependingList<E>
-
- All Superinterfaces:
CapacityCarrying,CapacityExtendable,Consumer<E>,ExtendedCollection<E>,ExtendedList<E>,ExtendedSequence<E>,OptimizableCollection,Sized,XPrependingSequence<E>
- All Known Subinterfaces:
XExpandingList<E>,XExtendingList<E>,XIncreasingList<E>,XInputtingList<E>,XInsertingList<E>,XList<E>
- All Known Implementing Classes:
ArrayCollector,BulkList,EqBulkList,LimitList,LockedList,Single,SubList,SynchList
public interface XPrependingList<E> extends XPrependingSequence<E>, ExtendedList<E>
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceXPrependingList.Creator<E>
-
Method Summary
Modifier and Type Method Description XPrependingList<E>prependAll(E... elements)XPrependingList<E>prependAll(E[] elements, int srcStartIndex, int srcLength)XPrependingList<E>prependAll(XGettingCollection<? extends E> elements)-
Methods inherited from interface one.microstream.collections.interfaces.CapacityCarrying
isFull, maximumCapacity, remainingCapacity
-
Methods inherited from interface one.microstream.collections.interfaces.CapacityExtendable
currentCapacity, currentFreeCapacity, ensureCapacity, ensureFreeCapacity
-
Methods inherited from interface one.microstream.collections.interfaces.ExtendedCollection
hasVolatileElements, nullAllowed
-
Methods inherited from interface one.microstream.collections.interfaces.OptimizableCollection
optimize
-
Methods inherited from interface one.microstream.collections.types.XPrependingSequence
nullPrepend, prepend
-
-
-
-
Method Detail
-
prependAll
XPrependingList<E> prependAll(E... elements)
- Specified by:
prependAllin interfaceXPrependingSequence<E>
-
prependAll
XPrependingList<E> prependAll(E[] elements, int srcStartIndex, int srcLength)
- Specified by:
prependAllin interfaceXPrependingSequence<E>
-
prependAll
XPrependingList<E> prependAll(XGettingCollection<? extends E> elements)
- Specified by:
prependAllin interfaceXPrependingSequence<E>
-
-