Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion datasketches/src/hll/sketch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ impl HllSketch {
/// Update the sketch with a raw coupon value
///
/// Maintains all sketch invariants including mode transitions and estimator updates.
pub(super) fn update_with_coupon(&mut self, coupon: u32) {
pub fn update_with_coupon(&mut self, coupon: u32) {
match &mut self.mode {
Mode::List { list, hll_type } => {
list.update(coupon);
Expand Down