validate.FloatRules
Example
Disclaimer: The example is meant to show what methods are available on the object and does not necessarily constitute working
code.
local types = import 'types.libsonnet';
types.validate.FloatRules
.withConst(1)
.withGt(1)
.withGte(1)
.withIgnoreEmpty(false)
.withIn([ 1 ])
.withLt(1)
.withLte(1)
.withNotIn([ 1 ])
._validate()
Fields
| Name |
Type |
One-of group |
Required |
Constraints |
| const |
float
|
|
|
|
| gt |
float
|
|
|
|
| gte |
float
|
|
|
|
| ignore_empty |
bool
|
|
|
|
| in |
[]
float
|
|
|
|
| lt |
float
|
|
|
|
| lte |
float
|
|
|
|
| not_in |
[]
float
|
|
|
|