github.com/tomwright/dasel@v1.27.3/condition.go (about)

     1  package dasel
     2  
     3  import (
     4  	"reflect"
     5  )
     6  
     7  // Condition defines a Check we can use within dynamic selectors.
     8  type Condition interface {
     9  	Check(other reflect.Value) (bool, error)
    10  }