Enumeration Casevapor 4.114.1Vapor
greaterThanMax(_:)
The value was greater than max
.
case greaterThanMax(T)
The value was greater than max
.
case greaterThanMax(T)
import Vapor
Vapor is a framework for building server applications, APIs and websites in Swift. It provides a safe, performant and scalable foundation for building large complex backends.
enum RangeResult<T> where T : Comparable
Type used by Range
and Count
validators to indicate where a value fell within a range.
case between(min: T, max: T)
The value was between min
and max
.
case greaterThanOrEqualToMin(T)
The value was greater than or equal to min
.
case lessThanOrEqualToMax(T)
The value was less than or equal to max
.
case lessThanMin(T)
The value was less than min
.