| 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 | } |
| 42 | inline bool IsLong(reflection::BaseType t) { |
| 43 | return t == reflection::Long || t == reflection::ULong; |
| 44 | } |