Skip to content

MatchType🔗

Definition🔗

type MatchType string
const (
    MatchTypeEqual MatchType = "="
    MatchTypeNotEqual MatchType = "!="
    MatchTypeEqualRegex MatchType = "=~"
    MatchTypeNotEqualRegex MatchType = "!~"
)