Class CharNoExactReverseStampKernel
java.lang.Object
io.deephaven.engine.table.impl.join.stamp.CharNoExactReverseStampKernel
- All Implemented Interfaces:
Context
,StampKernel
,SafeCloseable
,AutoCloseable
-
Method Summary
Modifier and TypeMethodDescriptionvoid
computeRedirections
(Chunk<Values> leftStamps, Chunk<Values> rightStamps, LongChunk<RowKeys> rightKeyIndices, WritableLongChunk<RowKeys> leftRedirections) Stamps the left-hand-side values with the corresponding right hand side.
-
Method Details
-
computeRedirections
public void computeRedirections(Chunk<Values> leftStamps, Chunk<Values> rightStamps, LongChunk<RowKeys> rightKeyIndices, WritableLongChunk<RowKeys> leftRedirections) Description copied from interface:StampKernel
Stamps the left-hand-side values with the corresponding right hand side.The rightKeyIndices are parallel to the stamp values in rightStamps; and used to compute a new chunk of redirections parallel to leftStamps.
- Specified by:
computeRedirections
in interfaceStampKernel
- Parameters:
leftStamps
- the input lhs stamp valuesrightStamps
- the input rhs stamp valuesrightKeyIndices
- the input rhs stamp indicesleftRedirections
- the resulting redirections from the stamping operation
-