AttributeQualifierPattern holds a wildcard or valued qualifier pattern.
| 108 | |
| 109 | // AttributeQualifierPattern holds a wildcard or valued qualifier pattern. |
| 110 | type AttributeQualifierPattern struct { |
| 111 | wildcard bool |
| 112 | value any |
| 113 | } |
| 114 | |
| 115 | // Matches returns true if the qualifier pattern is a wildcard, or the Qualifier implements the |
| 116 | // qualifierValueEquator interface and its IsValueEqualTo returns true for the qualifier pattern. |
nothing calls this directly
no outgoing calls
no test coverage detected