mirror of
https://github.com/Oxalide/vsphere-influxdb-go.git
synced 2023-10-10 13:36:51 +02:00
19 lines
399 B
Go
19 lines
399 B
Go
package estimator
|
|
|
|
import "encoding"
|
|
|
|
// Sketch is the interface representing a sketch for estimating cardinality.
|
|
type Sketch interface {
|
|
// Add adds a single value to the sketch.
|
|
Add(v []byte)
|
|
|
|
// Count returns a cardinality estimate for the sketch.
|
|
Count() uint64
|
|
|
|
// Merge merges another sketch into this one.
|
|
Merge(s Sketch) error
|
|
|
|
encoding.BinaryMarshaler
|
|
encoding.BinaryUnmarshaler
|
|
}
|