()
| 126 | } |
| 127 | |
| 128 | func (s SampleHistogram) String() string { |
| 129 | return fmt.Sprintf("Count: %f, Sum: %f, Buckets: %v", s.Count, s.Sum, s.Buckets) |
| 130 | } |
| 131 | |
| 132 | func (s *SampleHistogram) Equal(o *SampleHistogram) bool { |
| 133 | return s == o || (s.Count == o.Count && s.Sum == o.Sum && s.Buckets.Equal(o.Buckets)) |
nothing calls this directly
no outgoing calls
no test coverage detected