| 702 | static bool IsGood(dataType dtype) noexcept { return dtype != NO_TYPE; } |
| 703 | static bool IsBool(dataType dtype) noexcept { return dtype == BOOL_TYPE; } |
| 704 | static bool IsLabel(dataType dtype) noexcept { return dtype == LABEL_TYPE; } |
| 705 | static bool IsScalar(dataType dtype) noexcept { return dtype == SCALAR_TYPE; } |
| 706 | static bool IsNumeric(dataType dtype) noexcept { return IsLabel(dtype) || IsScalar(dtype); } |
| 707 |
no outgoing calls
no test coverage detected