Expr represents an entql expression. All expressions implement the Expr interface.
| 68 | type ( |
| 69 | // Expr represents an entql expression. All expressions implement the Expr interface. |
| 70 | Expr interface { |
| 71 | expr() |
| 72 | fmt.Stringer |
| 73 | } |
| 74 | |
| 75 | // P represents an expression that returns a boolean value depending on its variables. |
| 76 | P interface { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…