| 232 | */ |
| 233 | template <typename T> |
| 234 | constexpr T Delta(const T a, const T b) |
| 235 | { |
| 236 | return (a < b) ? b - a : a - b; |
| 237 | } |
| 238 | |
| 239 | /** |
| 240 | * Checks if a value is between a window started at some base point. |
no outgoing calls
no test coverage detected