public interface TwoDimensionalByteAccess extends TwoDimensionalByteReadAccess, TwoDimensionalAccess<java.lang.Byte>
TwoDimensionalByteReadAccess.Base
Modifier and Type | Field and Description |
---|---|
static TwoDimensionalByteAccess |
EMPTY
Empty 2dimensional byte access.
|
Modifier and Type | Method and Description |
---|---|
default void |
changeAllValues(ByteOperator1 operator)
Change all values by applying an operator.
|
default void |
changeValueAt(ByteOperator1 operator,
int ix,
int iy)
Change the value at the given indexes.
|
default void |
fillValuesByIndex(IntToByteFunction2 setter)
Set all values depending on their indexes.
|
default void |
setElementAt(java.lang.Byte element,
int ix,
int iy)
Set the element at the given indexes.
|
void |
setValueAt(byte value,
int ix,
int iy)
Set the value at the given indexes.
|
default OneDimensionalByteAccess |
subAtX(int ix)
Get a 1-dimensional view of the row at the given X index.
|
default OneDimensionalByteAccess |
subAtY(int iy)
Get a 1-dimensional view of the column at the given X index.
|
default TwoDimensionalByteAccess |
transposed()
Get a transposed view of this 2-dimensional read access.
|
asBase, getElementAt, getValueAt, singleton
changeAll, changeAll, createConstant, createIndexed, createNulled, createSupplied, empty, fillByIndex, setElement, zeroX, zeroY
equal, getElement, getNumDimensions, getNumElements, getSize, getSizes, hash, sizeX, sizeY, toString, view, visitAll, visitAll, xIterable, xIterator, yIterable, yIterator
change, setAll, setFrom, setFrom, setFrom
empty, linearized
static final TwoDimensionalByteAccess EMPTY
void setValueAt(byte value, int ix, int iy)
value
- value to setix
- X indexiy
- Y indexdefault void changeValueAt(@NotNull ByteOperator1 operator, int ix, int iy)
operator
- operator to apply to the valueix
- X indexiy
- Y indexdefault void changeAllValues(@NotNull ByteOperator1 operator)
operator
- operator to applydefault void fillValuesByIndex(@NotNull IntToByteFunction2 setter)
setter
- setter which provides the value to set for each index combinationdefault void setElementAt(@NotNull java.lang.Byte element, int ix, int iy)
TwoDimensionalAccess
setElementAt
in interface TwoDimensionalAccess<java.lang.Byte>
element
- element to setix
- index in X direction from 0
(included) to TwoDimensionalReadAccess.sizeX()
(excluded)iy
- index in Y direction from 0
(included) to TwoDimensionalReadAccess.sizeY()
(excluded)@NotNull default OneDimensionalByteAccess subAtX(int ix)
TwoDimensionalReadAccess
subAtX
in interface TwoDimensionalAccess<java.lang.Byte>
subAtX
in interface TwoDimensionalByteReadAccess
subAtX
in interface TwoDimensionalReadAccess<java.lang.Byte>
ix
- X indexix
@NotNull default OneDimensionalByteAccess subAtY(int iy)
TwoDimensionalReadAccess
subAtY
in interface TwoDimensionalAccess<java.lang.Byte>
subAtY
in interface TwoDimensionalByteReadAccess
subAtY
in interface TwoDimensionalReadAccess<java.lang.Byte>
iy
- Y indexiy
@NotNull default TwoDimensionalByteAccess transposed()
TwoDimensionalReadAccess
transposed
in interface TwoDimensionalAccess<java.lang.Byte>
transposed
in interface TwoDimensionalByteReadAccess
transposed
in interface TwoDimensionalReadAccess<java.lang.Byte>