Numeric validators — Float
Used for parameters with decimal values (lengths, areas, volumes, percentages).
Float — Equal / Not Equal
Used for
Exact numeric comparison.
How it works
- Compares numeric value directly
What it will find
- Exact numeric matches
What it will not find
- Values with rounding differences
- Text-based numbers
- Unit-converted expectations
⚠️ Avoid exact float equality unless you really mean it.
Float — Less than / Less than or Equal
Float — Greater than / Greater than or Equal
Used for
Range checks and thresholds.
How it works
- Performs numeric comparison on the raw value
What it will find
- Values inside or outside defined bounds
What it will not find
- Missing values
- Empty values
- Numbers stored as text