The number of data components
| 698 | |
| 699 | // The number of data components |
| 700 | static int GetNumberOfComponents(const dataType dtype) noexcept { return (dtype & 0xF); } |
| 701 | |
| 702 | static bool IsGood(dataType dtype) noexcept { return dtype != NO_TYPE; } |
| 703 | static bool IsBool(dataType dtype) noexcept { return dtype == BOOL_TYPE; } |
no outgoing calls