# Functions
All verifies a map of fields.
Enum verifies that a string is in a set of values.
Errorf creates a verify error.
Float verifies float64s.
FloatMax verifies that the float64 is at most l.
FloatMin verifies that the float64 is at least l.
FloatPositive verifies that an float64 is positive.
FloatRange verifies that an float64 is in range.
Int verifies ints.
IntMax verifies that the int is at most l.
IntMin verifies that the int is at least l.
IntPositive verifies that an int is positive.
IntRange verifies that an int is in range.
Names specify that the names must be a non-empty string of maximum length 32.
NotNull verifies that the []byte is not null.
NullInt verifies a NullInt, if it is valid.
Password specify that the passwords must be a string of length between 9 and 32.
Regexp verifies that a string matches a regular expression exactly.
String runs verification on a string against a list of verifiers.
StringEmptyOr passes the check if the string is empty, and complain otherwise.
StringMaxLength verifies that a string must have a maximum length of "l".
StringMinLength verifies that a string must have a minimum length of "l".
StringNonEmpty verifies that a string is not empty.
# Type aliases
FloatVerify are float64 verifiers.
IntVerify are int verifiers.
StringVerify are string verifiers.