| 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 | |
| 708 | // Is a VectorSpace type? |
| 709 | static bool IsVectorSpace(dataType dtype) noexcept |
no outgoing calls
no test coverage detected