com.github.arturopala.bufferandslice
Appends value at the end of the buffer and advances topIndex.
Appends value at the end of the buffer and advances topIndex.
Appends values from the given array at the end of the buffer and advances topIndex.
Appends values from the given array at the end of the buffer and advances topIndex.
Appends number of values from the given iterator at the end of the buffer and advances topIndex.
Appends number of values from the given iterator at the end of the buffer and advances topIndex.
Appends values from the given iterator at the end of the buffer and advances topIndex.
Appends values from the given iterator at the end of the buffer and advances topIndex.
Appends values from the given iterable at the end of the buffer and advances topIndex.
Appends values from the given iterable at the end of the buffer and advances topIndex.
Appends values from the given sequence at the end of the buffer and advances topIndex.
Appends values from the given sequence at the end of the buffer and advances topIndex.
Appends values from the given slice at the end of the buffer and advances topIndex.
Appends values from the given slice at the end of the buffer and advances topIndex.
Returns value at the given index or 0 if out of scope.
Returns value at the given index or 0 if out of scope.
Returns an Array with a copy of an accessible buffer range.
Returns an Array with a copy of an accessible buffer range.
Wraps accessible internal state as a Slice without making any copy.
Wraps accessible internal state as a Slice without making any copy.
Returns true if buffer contains given value.
Returns true if buffer contains given value.
Creates a copy of this buffer.
Creates a copy of this buffer.
Creates a copy of this buffer.
Creates a copy of this buffer.
Ensures buffer capacity to address provided index.
Ensures buffer capacity to address provided index.
Returns true if buffer contains value fulfilling the predicate.
Returns true if buffer contains value fulfilling the predicate.
Moves topIndex value right by the distance.
Moves topIndex value right by the distance.
Returns Some value at the index, or None if index outside of range.
Returns Some value at the index, or None if index outside of range.
Returns value at the topIndex.
Returns value at the topIndex.
Returns Some value at the topIndex or None if empty buffer.
Returns Some value at the topIndex or None if empty buffer.
Returns this buffer without a first element.
Returns this buffer without a first element.
Shifts content in [index, length) one step to the right and updates value at index.
Shifts content in [index, length) one step to the right and updates value at index.
Shift current content to the right starting from index
at the insertLength
distance,
and copies array chunk into the gap.
Shift current content to the right starting from index
at the insertLength
distance,
and copies array chunk into the gap.
Sets topIndex to be at least at the end of the new chunk of values.
Shift current content to the right starting from index
at the min(iterator.length, insertLength)
distance,
and inserts iterated values into the gap.
Shift current content to the right starting from index
at the min(iterator.length, insertLength)
distance,
and inserts iterated values into the gap.
- Sets topIndex to be at least at the end of the new chunk of values.
Inserts iterated values into the gap made by shiftjng buffer right, starting from the index.
Inserts iterated values into the gap made by shiftjng buffer right, starting from the index. - Sets topIndex to be at least at the end of the new chunk of values.
Shift current content to the right starting from index
at the min(iterator.length, insertLength)
distance,
and inserts iterated values into the gap in the reverse order.
Shift current content to the right starting from index
at the min(iterator.length, insertLength)
distance,
and inserts iterated values into the gap in the reverse order.
- Sets topIndex to be at least at the end of the new chunk of values.
Inserts iterated values, in the reverse order, into the gap made by shiftjng buffer right, starting from the index.
Inserts iterated values, in the reverse order, into the gap made by shiftjng buffer right, starting from the index. - Sets topIndex to be at least at the end of the new chunk of values.
Shift current content to the right starting from index
at the slice.length
distance,
and copies slice content into the gap.
Shift current content to the right starting from index
at the slice.length
distance,
and copies slice content into the gap.
Sets topIndex to be at least at the end of the new chunk of values.
Shift current content to the right starting from index
at the insertLength
distance,
iterates over the source indexes and copies values into the gap.
Shift current content to the right starting from index
at the insertLength
distance,
iterates over the source indexes and copies values into the gap.
- Sets topIndex to be at least at the end of the new chunk of values.
Is the accessible part of the buffer empty?
Is the accessible part of the buffer empty?
Returns an iterator over actual buffer values, starting from the zero index up.
Returns an iterator over actual buffer values, starting from the zero index up.
does not copy buffer values,
Returns value at the zero index.
Returns value at the zero index.
Returns Some value at the zero index, or None if empty buffer.
Returns Some value at the zero index, or None if empty buffer.
Length of the accessible part of the buffer.
Length of the accessible part of the buffer.
Iterable representing lazily mapped values of this buffer at the time of access.
Iterable representing lazily mapped values of this buffer at the time of access.
map function
Updates in-place all values in the range [0,length) using the function.
Updates in-place all values in the range [0,length) using the function.
map function
Updates value at the provided index using the function.
Updates value at the provided index using the function. Index must fall within range [0,length).
value's index
map function
IndexOutOfBoundsException
if index lower than zero.
Updates all values in the range [0,length) using the function.
Updates all values in the range [0,length) using the function.
map function
Updates all accepted values in the range [0,length) using the function.
Updates all accepted values in the range [0,length) using the function.
map function
filter function
Updates values in the range [startIndex,toIndex)^^[0,length) using the function. One of {startIndex,toIndex} must fall within range [0,length).
Updates values in the range [startIndex,toIndex)^^[0,length) using the function. One of {startIndex,toIndex} must fall within range [0,length).
index of the first value inclusive
index of the last value exclusive
map function
IndexOutOfBoundsException
if index lower than zero.
Updates values in the range [startIndex,toIndex)^^[0,length) using the function. One of {startIndex,toIndex} must fall within range [0,length).
Updates values in the range [startIndex,toIndex)^^[0,length) using the function. One of {startIndex,toIndex} must fall within range [0,length).
index of the first value inclusive
index of the last value exclusive
map function
filter function
IndexOutOfBoundsException
if index lower than zero.
Moves values in [fromIndex,toIndex) to the left at a distance, to become [fromIndex - distance, toIndex - distance), and moves right any existing values in [fromIndex - distance, fromIndex) to become [toIndex - distance, toIndex).
Moves values in [fromIndex,toIndex) to the left at a distance, to become [fromIndex - distance, toIndex - distance), and moves right any existing values in [fromIndex - distance, fromIndex) to become [toIndex - distance, toIndex). Shifts right first if distance > fromIndex. Ignores negative distance and values outside of [0,length). Moves topIndex if affected.
Moves values in [fromIndex,toIndex) to the right at a distance, to become [fromIndex + distance, toIndex + distance), and moves left any existing values in [toIndex, toIndex + distance) to become [fromIndex, fromIndex + distance).
Moves values in [fromIndex,toIndex) to the right at a distance, to become [fromIndex + distance, toIndex + distance), and moves left any existing values in [toIndex, toIndex + distance) to become [fromIndex, fromIndex + distance). Ignores negative distance and values outside of [0,length). Moves topIndex if affected.
Is the accessible part of the buffer non empty?
Is the accessible part of the buffer non empty?
Attempts to optimize buffer storage, if needed.
Attempts to optimize buffer storage, if needed.
Returns value at the topIndex - offset.
Returns value at the topIndex - offset.
Returns value at the topIndex.
Returns value at the topIndex.
Returns value at the topIndex - offset.
Returns value at the topIndex - offset.
Returns value at the topIndex, and moves topIndex back.
Returns value at the topIndex, and moves topIndex back.
Appends value to the topIndex.
Returns value at the given index without checks.
Returns value at the given index without checks.
Removes value at index and shifts content in [index+1, length) to the left.
Removes value at index and shifts content in [index+1, length) to the left.
Removes values in the range [fromIndex, toIndex) and shifts content in [toIndex, length) to the left.
Removes values in the range [fromIndex, toIndex) and shifts content in [toIndex, length) to the left.
Removes values matching the predicate.
Removes values matching the predicate.
Replaces current values in the range [index, index + replaceLength) with values of the array range [sourceIndex, sourceIndex + replaceLength).
Replaces current values in the range [index, index + replaceLength) with values of the array range [sourceIndex, sourceIndex + replaceLength).
Replaces current values in the range [index, index + min(iterator.length, replaceLength) ) with values returned from the iterator.
Replaces current values in the range [index, index + min(iterator.length, replaceLength) ) with values returned from the iterator.
Replaces current values in the range [index, index + min(iterator.length, replaceLength)) with values returned from the iterator in the reverse order.
Replaces current values in the range [index, index + min(iterator.length, replaceLength)) with values returned from the iterator in the reverse order.
Replaces current values in the range [index, index + slice.length) with values of the slice.
Replaces current values in the range [index, index + slice.length) with values of the slice.
Replaces current values in the range [index, index + replaceLength) with values returned by the function when iterating argument in the range [sourceIndex, sourceIndex + replaceLength).
Replaces current values in the range [index, index + replaceLength) with values returned by the function when iterating argument in the range [sourceIndex, sourceIndex + replaceLength).
Resets buffer, sets topIndex to -1.
Resets buffer, sets topIndex to -1. - Does not clear existing values.
previous topIndex
Returns a reverse iterator over actual buffer values, starting from the topIndex down.
Returns a reverse iterator over actual buffer values, starting from the topIndex down.
Moves topIndex value left by the distance.
Moves topIndex value left by the distance.
Sets topIndex value.
Sets topIndex value.
Moves values [index, length) left to [index-distance, length - distance).
Moves values [index, length) left to [index-distance, length - distance). Effectively removes range (index-distance, index]. Ignores negative distance. Moves topIndex if affected.
Moves values [index, length) right to [index+distance, length + distance).
Moves values [index, length) right to [index+distance, length + distance). Effectively creates a new range [index, index+distance). Ignores negative distance. Does not clear existing values inside [index, index+distance). Moves topIndex if affected.
Takes range and returns an IntSlice.
Takes range and returns an IntSlice.
Replace value at the topIndex.
Replace value at the topIndex.
Swap two values at the provided indexes.
Swap two values at the provided indexes.
Value at first
becomes value at second
, and vice versa.
- Does nothing if any index falls outside [0,length) or if indexes are equal.
Swap values in range [first, first + swapLength) with values in range [second, second + swapLength] - Does nothing if any index falls outside [0,length), or if indexes are equal.
Swap values in range [first, first + swapLength) with values in range [second, second + swapLength] - Does nothing if any index falls outside [0,length), or if indexes are equal. - if [first, first + swapLength) overlaps with [second, second + swapLength) then the later overwrites the former.
Returns this buffer after decrementing topIndex .
Returns this buffer after decrementing topIndex .
Returns a trimmed copy of an underlying array.
Returns a trimmed copy of an underlying array.
Returns topIndex value.
Returns topIndex value.
Sets topIndex value if lower than index, otherwise keeps existing.
Sets topIndex value if lower than index, otherwise keeps existing.
Trims the buffer, if needed, to have at most the size
.
Trims the buffer, if needed, to have at most the size
.
Updates value at the provided index.
Updates value at the provided index. Alters underlying array if necessary.
IndexOutOfBoundsException
if index lower than zero.
Stores value at the given index without checks.
Stores value at the given index without checks.
List like operations, head is the top element
Stack like operations, peek takes the top element
Manipulations of the topIndex
Growable, mutable array of bytes.