| 86 | inline bool IsInline(Type t) { return t <= FBT_FLOAT || t == FBT_BOOL; } |
| 87 | |
| 88 | inline bool IsTypedVectorElementType(Type t) { |
| 89 | return (t >= FBT_INT && t <= FBT_STRING) || t == FBT_BOOL; |
| 90 | } |
| 91 | |
| 92 | inline bool IsTypedVector(Type t) { |
| 93 | return (t >= FBT_VECTOR_INT && t <= FBT_VECTOR_STRING_DEPRECATED) || |
no outgoing calls
no test coverage detected