Class DoubleStampKernel
java.lang.Object
io.deephaven.engine.table.impl.join.stamp.DoubleStampKernel
- All Implemented Interfaces:
Context,StampKernel,SafeCloseable,AutoCloseable
-
Method Summary
Modifier and TypeMethodDescriptionvoidcomputeRedirections(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:StampKernelStamps 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:
computeRedirectionsin 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
-