Returns true if the type is a scalar integer type.
| 67 | |
| 68 | // Returns true if the type is a scalar integer type. |
| 69 | inline bool isScalarIntegral(const IdType& type) { |
| 70 | return type.type_class == IdTypeClass::kScalarIntegerType; |
| 71 | } |
| 72 | |
| 73 | // Returns true if the type is a scalar floating point type. |
| 74 | inline bool isScalarFloating(const IdType& type) { |
no outgoing calls
no test coverage detected