# Packages
Package utils //.
# Functions
ExactMatcher matches against the "exact" match type.
ExistsMatcher matches against the "exists" match type.
GeMatcher matches against the "ge" match type.
Get an implementation of a Matcher function by its registered name.
GtMatcher matches against the "gt" match type.
LeMatcher matches against the "le" match type.
LtMatcher matches against the "lt" match type.
Register new matchers by providing a name and a Matcher implementation.
SemverEqMatcher returns true if the user's semver attribute is equal to the semver condition value.
SemverEvaluator is a help function to wrap a common evaluation code.
SemverGeMatcher returns true if the user's semver attribute is greater or equal to the semver condition value.
SemverGtMatcher returns true if the user's semver attribute is greater than the semver condition value.
SemverLeMatcher returns true if the user's semver attribute is less than or equal to the semver condition value.
SemverLtMatcher returns true if the user's semver attribute is less than the semver condition value.
SubstringMatcher matches against the "substring" match type.
# Constants
ExactMatchType name for the "exact" matcher.
ExistsMatchType name for the "exists" matcher.
GeMatchType name for the "ge" matcher.
GtMatchType name for the "gt" matcher.
LeMatchType name for the "le" matcher.
LtMatchType name for the "lt" matcher.
SemverEqMatchType name for the semver_eq matcher.
SemverGeMatchType name for the semver_eq matcher.
SemverGtMatchType name for the semver_eq matcher.
SemverLeMatchType name for the semver_eq matcher.
SemverLtMatchType name for the semver_eq matcher.
SubstringMatchType name for the "substring" matcher.
# Structs
SemanticVersion defines the class.
# Type aliases
Matcher type is used to evaluate audience conditional primitives.