Throw an exception if y is not greater or equal than low.
Throw an exception if each element of y is not greater or equal than the associated element in low.
This function is vectorized and will check each element of y against each element of low.
- Template Parameters
-
| T_y | A scalar type |
| T_low | A scalar type |
| Idxs | A parameter pack of Integral types |
- Parameters
-
| function | Function name (for error messages) |
| name | Variable name (for error messages) |
| y | Variable to check |
| low | Lower bound |
| idxs | Pack of integral types to construct lazily construct the error message indices |
- Exceptions
-
| `std::domain_error` | if y is not greater or equal to low or if any element of y or low is NaN |
This function is vectorized and will check each element of y against each element of low.
- Template Parameters
-
| T_y | Type inheriting from Eigen::DenseBase or a var_value with the var's inner type inheriting from Eigen::DenseBase where the compile time number of rows or columns is not equal to one |
| T_low | Type inheriting from Eigen::DenseBase or a var_value with the var's inner type inheriting from Eigen::DenseBase where the compile time number of rows or columns is not equal to one |
| Idxs | A parameter pack of Integral types |
- Parameters
-
| function | Function name (for error messages) |
| name | Variable name (for error messages) |
| y | Variable to check |
| low | Lower bound |
| idxs | Pack of integral types to construct lazily construct the error message indices |
- Exceptions
-
| `std::domain_error` | if y is not greater or equal to low or if any element of y or low is NaN |
Definition at line 36 of file check_greater_or_equal.hpp.