| [TOC](Readme.md) [Prev](numbers.md) [Next](rangedef.md) |
| _Types ~~and~~ are Values_ |
| Bounds define a lower bound, upper bound, or inequality for a certain value. |
| They work on numbers, strings, bytes, and and null. |
| The bound is defined for all values for which the corresponding comparison |
| For instance `>5.0` allows all floating point values greater than `5.0`, |
| whereas `<0` allows all negative numbers (int or float). |
| rn: >=3 & <8 // type int | float |
| ri: >=3 & <8 & int // type int |
| rf: >=3 & <=8.0 // type float |
| `$ cue eval -i bounds.cue` |