...

Source file src/go.einride.tech/aip/filtering/filter.go

Documentation: go.einride.tech/aip/filtering

     1  package filtering
     2  
     3  import (
     4  	expr "google.golang.org/genproto/googleapis/api/expr/v1alpha1"
     5  )
     6  
     7  // Filter represents a parsed and type-checked filter.
     8  type Filter struct {
     9  	CheckedExpr *expr.CheckedExpr
    10  }
    11  

View as plain text