291 B
291 B
Int
Int is the primitive type constraint for integer values.
Examples
retry = Int default 3;
port = Int & >= 1 & <= 65535;
Constraint composition
Int can be composed with numeric comparison constraints.
NarrowedPort = Int & >= 1 & <= 65535 & > 443;