github.com/viant/toolbox@v0.34.5/predicate.go (about) 1 package toolbox 2 3 //Predicate represents a generic predicate 4 type Predicate interface { 5 //Apply checks if predicate is true 6 Apply(value interface{}) bool 7 }