| 31 | // ------------------------- GETTERS ------------------------- |
| 32 | |
| 33 | inline bool IsScalar(reflection::BaseType t) { |
| 34 | return t >= reflection::UType && t <= reflection::Double; |
| 35 | } |
| 36 | inline bool IsInteger(reflection::BaseType t) { |
| 37 | return t >= reflection::UType && t <= reflection::ULong; |
| 38 | } |