| 47 | */ |
| 48 | |
| 49 | static inline bool LogInputCheck(float value) noexcept { |
| 50 | return value == value //not a NaN |
| 51 | && value >= 0; //Within allowable range |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * @returns Base 2 logarithm of the value. |
no outgoing calls
no test coverage detected