#include <concepts>
Go to the source code of this file.
|
| template<numeric T> |
| bool | hsc_snippets::lessThanAll (T x, T val) |
| |
| template<numeric T, numeric... Args> |
| bool | hsc_snippets::lessThanAll (T x, T val, Args... args) |
| |
| template<numeric T> |
| bool | hsc_snippets::lessThanOrEqualToAll (T x, T val) |
| |
| template<numeric T, numeric... Args> |
| bool | hsc_snippets::lessThanOrEqualToAll (T x, T val, Args... args) |
| |
| template<numeric T> |
| bool | hsc_snippets::greaterThanAll (T x, T val) |
| |
| template<numeric T, numeric... Args> |
| bool | hsc_snippets::greaterThanAll (T x, T val, Args... args) |
| |
| template<numeric T> |
| bool | hsc_snippets::greaterThanOrEqualToAll (T x, T val) |
| |
| template<numeric T, numeric... Args> |
| bool | hsc_snippets::greaterThanOrEqualToAll (T x, T val, Args... args) |
| |
| template<numeric T> |
| T | hsc_snippets::sum (T x) |
| |
| template<numeric T, numeric... Args> |
| T | hsc_snippets::sum (T x, Args... args) |
| |