ComputeDiff
See source codeComputes the diff between the previous and current value.
If the diff cannot be computed for whatever reason, it should return .
type ComputeDiff<Value, Diff> = (
previousValue: Value,
currentValue: Value,
lastComputedEpoch: number,
currentEpoch: number
) => Diff | RESET_VALUE
Prev
VecLikeNext
ChangeSource