CellDelta

@Serializable
data class CellDelta(val row: Int, val col: Int, val value: Long)

A single changed cell in a CountMinSketch sparse delta: the (row, col) position and the new absolute value after increment.

Sparse deltas carry exactly CountMinSketch.depth of these — one per hash row — versus the full depth × width matrix that would otherwise travel on the wire.

Constructors

Link copied to clipboard
constructor(row: Int, col: Int, value: Long)

Properties

Link copied to clipboard
val col: Int
Link copied to clipboard
val row: Int
Link copied to clipboard
val value: Long