span property
int
get
span
The accepted-event span this delta advances: epoch - baseEpoch (usually
1, > 1 for a coalesced multi-epoch-span delta, #lzsync). Saturates at 0
for a malformed backward delta. Mirrors Delta::span in lazily-rs.
Implementation
int get span => epoch >= baseEpoch ? epoch - baseEpoch : 0;