public interface MutableLongIndexable extends LongIndexable, Copyable<MutableLongIndexable>
long[]
as it eg allows
read-only views or transparent views of subsets of the array.Modifier and Type | Interface and Description |
---|---|
static class |
MutableLongIndexable.Base
Abstract base class which provides useful implementations
for
Object.equals(Object) , Object.hashCode() ,
Object.toString() . |
LongIndexable.LongIndexableSpliterator
Modifier and Type | Field and Description |
---|---|
static MutableLongIndexable.Base |
EMPTY
Empty mutable indexable.
|
EMPTY_LONG_ITERATOR
Modifier and Type | Method and Description |
---|---|
default java.util.List<java.lang.Long> |
asList()
View this indexable as a standard list.
|
static MutableLongIndexable.Base |
based(MutableLongIndexable indexable)
View any mutable long indexable as a base long indexable.
|
static <IN> MutableLongIndexable.Base |
copy(java.util.Collection<IN> collection,
java.util.function.Function<IN,java.lang.Number> copier)
Create a mutable indexable which is initialized from copied elements of
a given collection.
|
default void |
copyInternally(int fromIndex,
int toIndex,
int numElements)
Copy elements inside this indexable.
|
static MutableLongIndexable.Base |
copyOf(java.util.Collection<? extends java.lang.Number> collection)
Create a mutable indexable which is initialized from a
given collection.
|
static MutableLongIndexable.Base |
empty() |
default void |
fillFrom(java.util.function.IntToLongFunction provider)
Fill this indexable from a provider.
|
static MutableLongIndexable.Base |
fromArray(long... elements)
Create a mutable indexable which is initialized from elements
of the given array.
|
static MutableLongIndexable.Base |
fromArray(long[] elements,
int startIndex,
int length)
Create a mutable indexable which is initialized from elements
of the given array.
|
static MutableLongIndexable.Base |
fromByteIndexable(ByteIndexable indexable)
Return a mutable double indexable initialized with the content of a
standard byte indexable.
|
static MutableLongIndexable.Base |
fromDoubleIndexable(DoubleIndexable indexable)
Return a mutable long indexable initialized with the content of a
standard double indexable.
|
static MutableLongIndexable.Base |
fromFloatIndexable(FloatIndexable indexable)
Return a mutable long indexable initialized with the content of a
standard float indexable.
|
static MutableLongIndexable.Base |
fromIndexable(Indexable<? extends java.lang.Number> indexable)
Create a mutable indexable which is the copy of a standard indexable.
|
static <B> MutableLongIndexable.Base |
fromIndexable(Indexable<B> indexable,
java.util.function.Function<? super B,? extends java.lang.Number> converter)
Create a mutable indexable which is the copy of a standard indexable.
|
static MutableLongIndexable.Base |
fromIntIndexable(IntIndexable indexable)
Return a mutable long indexable initialized with the content of a
standard int indexable.
|
static MutableLongIndexable.Base |
fromIterable(int size,
java.lang.Iterable<? extends java.lang.Number> iter)
Create a mutable indexable from an iterable or a part of it.
|
static MutableLongIndexable.Base |
fromLongIndexable(LongIndexable indexable)
Return a mutable long indexable initialized with the content of a
standard long indexable.
|
static MutableLongIndexable.Base |
fromShortIndexable(ShortIndexable indexable)
Return a mutable long indexable initialized with the content of a
standard short indexable.
|
default MutableLongIndexable |
getCopy()
Get a copy of this object.
|
default MutableLongIndexable.Base |
headSet(int toIndex)
Create an indexable subset from the last elements of this indexable set.
|
static MutableLongIndexable.Base |
init(int size,
long value)
Create a mutable
|
static MutableLongIndexable.Base |
init(int size,
java.util.function.LongSupplier creator)
Initialize a mutable indexable to a given size.
|
static MutableLongIndexable.Base |
initByIndex(int size,
java.util.function.IntToLongFunction producer)
Get a mutable long indexable of a given size which contains elements created by index.
|
default void |
initByIndex(java.util.function.IntToLongFunction setter)
Set all values of this long indexable by index.
|
default void |
order()
Order the elements in this indexable in their natural order.
|
default void |
order(LongOrdering ordering)
Order the elements in this indexable by the given ordering.
|
default MutableLongIndexable.Base |
reverse()
Get this indexable but with inverted order.
|
default void |
revert()
Revert the elements in this indexable.
|
default void |
revert(int from,
int to)
Revert the order of all elements in the given range.
|
void |
set(int index,
long value)
Set the element at the given index.
|
default int |
setFrom(java.lang.Iterable<? extends java.lang.Number> iterable)
Set the values of this mutable long indexable one after
the other from the given Number iterable until either the
iterable is emptied or
Sizeable.size() elements are set. |
default int |
setFrom(java.lang.Iterable<? extends java.lang.Number> iterable,
int startIndex,
int numElements)
Set the values of this mutable long indexable one after
the other from the given iterable until either the
iterable is emptied or
numElements elements are set. |
default void |
setFromArray(long[] array,
int arrayIndex,
int startIndex,
int numElements)
Set consecutive entries from an array.
|
default void |
setMulti(int from,
int len,
long value)
Set multiple elements to the same value.
|
default void |
shuffle(java.util.Random random)
Randomize the content of this mutable indexable.
|
default MutableLongIndexable.Base |
subSet(int fromIndex,
int toIndex)
Get an indexable subset.
|
default void |
swap(int idx1,
int idx2)
Swap the values at two indices.
|
default void |
swyp(int idx1,
int idx2)
Swap the values at two indices using Pythonesque indices.
|
default MutableLongIndexable.Base |
sybSet(int fromIndex,
int toIndex)
Get an indexable subset.
|
default void |
syt(int index,
long value)
Pythonesque set.
|
default MutableLongIndexable.Base |
tailSet(int fromIndex)
Create an indexable subset from the last elements of this indexable set.
|
static MutableLongIndexable.Base |
viewArray(long[] array)
Mutable indexable view which operates on the given array.
|
static MutableLongIndexable.Base |
viewArray(long[] array,
int start,
int length)
Mutable indexable view which operates on a part of the given array.
|
static <T> MutableLongIndexable.Base |
viewIndexable(Indexable<T> indexable,
java.util.function.ToLongFunction<? super T> getter,
LongSetter<? super T> setter)
View a generic indexable as a mutable long indexable by accessing
a long property of the elements of the underlying generic indexable.
|
static MutableLongIndexable.Base |
viewList(java.util.List<java.lang.Long> list)
Mutable indexable view which operates on the given array.
|
static MutableLongIndexable.Base |
zeroed(int size)
Create a mutable long indexable with
size
0.0 elements. |
addAllTo, addToArray, addToArray, asBase, asCollection, asIndexable, binarySearch, binarySearch, compare, compareUnsigned, emptyIndexable, equal, equal, firstMatch, foldLeft, frozen, frozenLongSpliterator, get, getMod, gyt, hash, indexes, intIndexes, isEmpty, isOrdered, isStrictlyOrdered, iterator, lastMatch, listIterator, longIterator, longIterator, longSpliterator, nextMatch, ordered, ordered, previousMatch, rotated, singleton, toArray, toList, toString, view, viewArray, viewAsBoolean, viewAsByte, viewAsDouble, viewAsDouble, viewAsFloat, viewAsInt, viewAsInt, viewAsShort, viewByIndex, viewIndexable, viewIndexable, viewIndexable, viewList, viewList, viewList, viewNumberArray, viewOp, withAppendedValue, withCachedHash, withExchangedValueAt, withInsertedValueAt, withRemovedValueAt, withSwappedValuesAt
average, containsLong, forEachLong, forEachLongFragile, spliterator, stream, sum, sumX
static final MutableLongIndexable.Base EMPTY
empty()
instead.void set(int index, long value)
index
- index between 0
and size() - 1
value
- value to put to the given indexdefault void syt(int index, long value)
-1
references the last element, -2
its predecessor, and so on.index
- index between -size()
and size() - 1
value
- value to put to the given indexdefault int setFrom(@NotNull java.lang.Iterable<? extends java.lang.Number> iterable)
Sizeable.size()
elements are set.iterable
- iterable from which this indexable is filleddefault int setFrom(@NotNull java.lang.Iterable<? extends java.lang.Number> iterable, int startIndex, int numElements)
numElements
elements are set.iterable
- iterable from which this indexable is filledstartIndex
- start index where the setting beginsnumElements
- number of elements to setdefault void setFromArray(@NotNull long[] array, int arrayIndex, int startIndex, int numElements)
array
- array with elements to set fromarrayIndex
- start index in the arraystartIndex
- start index in this mutable indexablenumElements
- number of elements to copyjava.lang.IndexOutOfBoundsException
- if this mutable indexable would overflow by this operationjava.lang.ArrayIndexOutOfBoundsException
- if array overflows by this operationdefault void setMulti(int from, int len, long value)
from
- first index to be set (Pythonesque)len
- number of elements to be set (non-negative)value
- value to be setdefault void copyInternally(int fromIndex, int toIndex, int numElements)
fromIndex
- start index from where elements are copied (Pythonesque)toIndex
- start index to where elements are copied (Pythonesque)numElements
- number of elements to copydefault void fillFrom(@NotNull java.util.function.IntToLongFunction provider)
provider
- provider which is called for each index and provides the element for that indexdefault void swap(int idx1, int idx2)
idx1
- first indexidx2
- second indexdefault void swyp(int idx1, int idx2)
idx1
- first index (Pythonesque
)idx2
- second index (Pythonesque
)@NotNull default MutableLongIndexable.Base subSet(int fromIndex, int toIndex)
LongIndexable
fromIndex
to toIndex - 1
.subSet
in interface LongIndexable
fromIndex
- start index of sub settoIndex
- index after last index@NotNull default MutableLongIndexable.Base sybSet(int fromIndex, int toIndex)
LongIndexable
sybSet
in interface LongIndexable
fromIndex
- start index of sub settoIndex
- end index of sub set@NotNull default MutableLongIndexable.Base tailSet(int fromIndex)
LongIndexable
tailSet
in interface LongIndexable
fromIndex
- index to start with, negative counts from the backdefault MutableLongIndexable.Base headSet(int toIndex)
LongIndexable
headSet
in interface LongIndexable
toIndex
- index one after the end (equal to the length of the returned set),
negative counts from the back@NotNull default MutableLongIndexable.Base reverse()
LongIndexable
reverse
in interface LongIndexable
default void revert(int from, int to)
to
element is also included in the reversion to allow easy
reversion at the end by using -1
.from
- start element of reversion (Pythonesque), includedto
- end element of reversion (Pythonesque), includeddefault void revert()
default void order(@NotNull LongOrdering ordering)
LongIndexable.isOrdered(LongOrdering)
returns true
for the given ordering
.ordering
- ordering to applydefault void order()
order(LongOrdering)
with natural order
.default void shuffle(@NotNull java.util.Random random)
random
- random number generatordefault void initByIndex(@NotNull java.util.function.IntToLongFunction setter)
setter
- setter which provides the value to be set for a given index@NotNull default java.util.List<java.lang.Long> asList()
List.set(int, Object)
method,
but neither any adding nor deleting methods. Standard sorting algorithms will work
on the returned list as a sorting algorithm is expected to neither move nor add
elements.asList
in interface LongIndexable
LongIndexable.toList()
@NotNull default MutableLongIndexable getCopy()
Copyable
getCopy
in interface Copyable<MutableLongIndexable>
@NotNull static MutableLongIndexable.Base based(@NotNull MutableLongIndexable indexable)
indexable
- mutqable long indexable to view as a MutableLongIndexable.Base
mutable long indexable@NotNull static MutableLongIndexable.Base init(int size, @NotNull java.util.function.LongSupplier creator)
size
- size of indexablecreator
- creator for the initial elementszeroed(int)
,
init(int, long)
@NotNull static MutableLongIndexable.Base initByIndex(int size, @NotNull java.util.function.IntToLongFunction producer)
initByIndex
in interface LongIndexable
size
- size of the returned indexableproducer
- producer which is called with an index and expected to return the associated valueproducer
LongIndexable.viewByIndex(int, IntToLongFunction)
@NotNull static MutableLongIndexable.Base copyOf(@NotNull java.util.Collection<? extends java.lang.Number> collection)
collection
- collection@NotNull static <IN> MutableLongIndexable.Base copy(@NotNull java.util.Collection<IN> collection, @NotNull java.util.function.Function<IN,java.lang.Number> copier)
IN
- incoming element typecollection
- collectioncopier
- element copier@NotNull static MutableLongIndexable.Base empty()
@NotNull static MutableLongIndexable.Base fromArray(@NotNull long... elements)
elements
- elementselements
@NotNull static MutableLongIndexable.Base fromArray(@NotNull long[] elements, int startIndex, int length)
elements
- array of elementsstartIndex
- index of first element used in the returned indxablelength
- length number of elements used in the returned indexableeleements
@NotNull static MutableLongIndexable.Base viewArray(@NotNull long[] array)
viewArray
in interface LongIndexable
array
- array@NotNull static MutableLongIndexable.Base viewArray(@NotNull long[] array, int start, int length)
viewArray
in interface LongIndexable
array
- arraystart
- start position in arraylength
- length of returned indexable@NotNull static MutableLongIndexable.Base viewList(@NotNull java.util.List<java.lang.Long> list)
list
- list@NotNull static MutableLongIndexable.Base fromIndexable(@NotNull Indexable<? extends java.lang.Number> indexable)
indexable
- standard indexable@NotNull static <B> MutableLongIndexable.Base fromIndexable(@NotNull Indexable<B> indexable, @NotNull java.util.function.Function<? super B,? extends java.lang.Number> converter)
B
- element type of incoming idexableindexable
- base indexableconverter
- converter from base indexable type to result element type,@NotNull static <T> MutableLongIndexable.Base viewIndexable(@NotNull Indexable<T> indexable, @NotNull java.util.function.ToLongFunction<? super T> getter, @NotNull LongSetter<? super T> setter)
This is useful if you have complex items, but are interested into only one (long) property of each item.
T
- element type of the underlying indexableindexable
- underlying generic indexablegetter
- function used to extract the property of interestsetter
- procedure used to set the property of interest@NotNull static MutableLongIndexable.Base fromDoubleIndexable(@NotNull DoubleIndexable indexable)
indexable
- double indexable@NotNull static MutableLongIndexable.Base fromFloatIndexable(@NotNull FloatIndexable indexable)
indexable
- float indexable@NotNull static MutableLongIndexable.Base fromLongIndexable(@NotNull LongIndexable indexable)
indexable
- long indexable@NotNull static MutableLongIndexable.Base fromIntIndexable(@NotNull IntIndexable indexable)
indexable
- int indexable@NotNull static MutableLongIndexable.Base fromShortIndexable(@NotNull ShortIndexable indexable)
indexable
- short indexable@NotNull static MutableLongIndexable.Base fromByteIndexable(@NotNull ByteIndexable indexable)
indexable
- long indexable@NotNull static MutableLongIndexable.Base fromIterable(int size, @NotNull java.lang.Iterable<? extends java.lang.Number> iter)
size
- maximum size of returned indexableiter
- iterable used for initializing the indexable@NotNull static MutableLongIndexable.Base zeroed(int size)
size
0.0
elements.size
- required size of returned mutable long indexable0.0
init(int, long)
,
init(int, LongSupplier)
@NotNull static MutableLongIndexable.Base init(int size, long value)
init
in interface LongIndexable
size
- required size of returned mutable long indexablevalue
- initial value of all elementsvalue
init(int, LongSupplier)
,
zeroed(int)