Skip to content
Permalink
master
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
7 lines (6 sloc) 91 Bytes
package tsz
type Iter interface {
Next() bool
Values() (uint32, float64)
Err() error
}