go:generate go run internal/gen.go Fielder is the interface for creating a predicate (entql.P) by a field name from the different builder types below.
| 16 | // Fielder is the interface for creating a predicate (entql.P) |
| 17 | // by a field name from the different builder types below. |
| 18 | type Fielder interface { |
| 19 | Field(string) P |
| 20 | } |
| 21 | |
| 22 | // BoolP is the interface for predicates of type bool (`type P[bool]`). |
| 23 | type BoolP interface { |
no outgoing calls
no test coverage detected
searching dependent graphs…