github.com/viant/toolbox@v0.34.5/ranger.go (about)

     1  package toolbox
     2  
     3  //Ranger represents an abstraction that has ability range over collection item
     4  type Ranger interface {
     5  	Range(func(item interface{}) (bool, error)) error
     6  }