| 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 | } |
| 39 | inline bool IsFloat(reflection::BaseType t) { |
| 40 | return t == reflection::Float || t == reflection::Double; |
| 41 | } |