| 35 | } |
| 36 | |
| 37 | type SamplesComparator struct { |
| 38 | tolerance float64 |
| 39 | sampleTypesComparator map[string]SamplesComparatorFunc |
| 40 | } |
| 41 | |
| 42 | // RegisterSamplesType helps with registering custom sample types |
| 43 | func (s *SamplesComparator) RegisterSamplesType(samplesType string, comparator SamplesComparatorFunc) { |
nothing calls this directly
no outgoing calls
no test coverage detected