An Iter is an iterator function that returns count number of Points or an error.
func(count int) ([]Point, error)
| 8 | // An Iter is an iterator function that returns |
| 9 | // count number of Points or an error. |
| 10 | type Iter func(count int) ([]Point, error) |
| 11 | |
| 12 | // Downsample `count` number of data points retrieved from the given iterator |
| 13 | // function to contain only `threshold` number of points while maintaining close |
nothing calls this directly
no outgoing calls
no test coverage detected