Uses of Interface
civitas.celestis.util.grid.IntGrid
Packages that use IntGrid
-
Uses of IntGrid in civitas.celestis.util.grid
Classes in civitas.celestis.util.grid that implement IntGridModifier and TypeClassDescriptionclassA static grid implemented using primitive arrays.Methods in civitas.celestis.util.grid that return IntGridModifier and TypeMethodDescriptionIntArrayGrid.map(IntUnaryOperator f) Applies the provided mapper functionfto every element of this grid, then returns a new grid whose values are populated from that of the provided function's return values.IntGrid.map(IntUnaryOperator f) Applies the provided mapper functionfto every element of this grid, then returns a new grid whose values are populated from that of the provided function's return values.ArrayGrid.mapToInt(ToIntFunction<? super E> f) Applies the provided mapper functionfto every element of this grid, then returns a new integer grid whose values are populated from that of the provided function's return values.AtomicGrid.mapToInt(ToIntFunction<? super E> f) Applies the provided mapper functionfto every element of this grid, then returns a new integer grid whose values are populated from that of the provided function's return values.Grid.mapToInt(ToIntFunction<? super E> f) Applies the provided mapper functionfto every element of this grid, then returns a new integer grid whose values are populated from that of the provided function's return values.HashGrid.mapToInt(ToIntFunction<? super E> f) Applies the provided mapper functionfto every element of this grid, then returns a new integer grid whose values are populated from that of the provided function's return values.SyncGrid.mapToInt(ToIntFunction<? super E> f) Applies the provided mapper functionfto every element of this grid, then returns a new integer grid whose values are populated from that of the provided function's return values.IntArrayGrid.merge(IntGrid g, IntBinaryOperator f) Between this grid and the provided gridg, this applies the merger functionffor each corresponding pair of elements, then returns a new grid whose elements are populated from that of the return values of the merger functionf.IntGrid.merge(IntGrid g, IntBinaryOperator f) Between this grid and the provided gridg, this applies the merger functionffor each corresponding pair of elements, then returns a new grid whose elements are populated from that of the return values of the merger functionf.static IntGridIntGrid.of(int[][] values) Creates a new int grid from the provided two-dimensional array of values.IntArrayGrid.resize(int rows, int columns) Returns a resized grid, whose elements are populated from that of this grid's elements.IntGrid.resize(int rows, int columns) Returns a resized grid, whose elements are populated from that of this grid's elements.IntArrayGrid.subGrid(int r1, int c1, int r2, int c2) Returns a sub-grid of this grid, whose values are populated from that of this grid's elements within the specified range.IntGrid.subGrid(int r1, int c1, int r2, int c2) Returns a sub-grid of this grid, whose values are populated from that of this grid's elements within the specified range.IntArrayGrid.transpose()Returns the transpose of this grid.IntGrid.transpose()Returns the transpose of this grid.Methods in civitas.celestis.util.grid with parameters of type IntGridModifier and TypeMethodDescriptionstatic intHashes a grid.IntArrayGrid.merge(IntGrid g, IntBinaryOperator f) Between this grid and the provided gridg, this applies the merger functionffor each corresponding pair of elements, then returns a new grid whose elements are populated from that of the return values of the merger functionf.IntGrid.merge(IntGrid g, IntBinaryOperator f) Between this grid and the provided gridg, this applies the merger functionffor each corresponding pair of elements, then returns a new grid whose elements are populated from that of the return values of the merger functionf.voidSets a sub-grid of this grid, copying values from the provided sub-gridg.voidSets a sub-grid of this grid, copying values from the provided sub-gridg.Constructors in civitas.celestis.util.grid with parameters of type IntGrid