Determines whether a symbol qualifies as constraint
UDA to mark constraint definitions
Value must be exactly N units long
Value must be > N
Value must be >= N
Value must contain only letters (a … z, A … Z)
Value must contain only alpha-numeric characters (a … z, A … Z, 0 … 9)
Value must contain only digits (0 … 9)
Value must contain only lowercase letters (A … Z)
Valid Unicode (UTF-8, UTF-16 or UTF-32) constraint
Value must contain only uppercase letters (A … Z)
Value must be < N
Value must be <= N
Value must be shorter than or as long as N units
Value must be longer than or as long as n units
Inverts a constraint
Value must not be NULL
Value must not be equal to zero
To implement a custom constraint, create a new struct and tag it with @constraint.
Implement a member function check() that accepts a parameter of the type to validate. Utilize templates or overloads to implement checks for different types.
Implement an errorMessage member: Either a (property) function with return type string or a field string.
Validation constraints
Implemented as UDAs.
“Batteries included!” This module provides a set of constraints for the most common use cases.