SYMBOL INDEX (27 symbols across 4 files) FILE: histogram.go type Histogram (line 7) | type Histogram interface type bin (line 20) | type bin struct FILE: histogram_test.go function approx (line 11) | func approx(x, y float64) bool { function TestHistogram (line 15) | func TestHistogram(t *testing.T) { function TestWeightedHistogram (line 41) | func TestWeightedHistogram(t *testing.T) { FILE: numerichistogram.go type NumericHistogram (line 10) | type NumericHistogram struct method Add (line 28) | func (h *NumericHistogram) Add(n float64) { method Quantile (line 52) | func (h *NumericHistogram) Quantile(q float64) float64 { method CDF (line 67) | func (h *NumericHistogram) CDF(x float64) float64 { method Mean (line 79) | func (h *NumericHistogram) Mean() float64 { method Variance (line 94) | func (h *NumericHistogram) Variance() float64 { method Count (line 109) | func (h *NumericHistogram) Count() float64 { method trim (line 114) | func (h *NumericHistogram) trim() { method String (line 148) | func (h *NumericHistogram) String() (str string) { function NewHistogram (line 20) | func NewHistogram(n int) *NumericHistogram { FILE: weightedhistogram.go type WeightedHistogram (line 12) | type WeightedHistogram struct method scaleDown (line 42) | func (h *WeightedHistogram) scaleDown(except int) { method Add (line 50) | func (h *WeightedHistogram) Add(n float64) { method Quantile (line 77) | func (h *WeightedHistogram) Quantile(q float64) float64 { method CDF (line 92) | func (h *WeightedHistogram) CDF(x float64) float64 { method Mean (line 104) | func (h *WeightedHistogram) Mean() float64 { method Variance (line 119) | func (h *WeightedHistogram) Variance() float64 { method Count (line 134) | func (h *WeightedHistogram) Count() float64 { method trim (line 138) | func (h *WeightedHistogram) trim() { method String (line 178) | func (h *WeightedHistogram) String() (str string) { function NewWeightedHistogram (line 28) | func NewWeightedHistogram(n int, alpha float64) *WeightedHistogram { function ewma (line 37) | func ewma(existingVal float64, newVal float64, alpha float64) (result fl...