| 90 | } |
| 91 | |
| 92 | inline bool IsTypedVector(Type t) { |
| 93 | return (t >= FBT_VECTOR_INT && t <= FBT_VECTOR_STRING_DEPRECATED) || |
| 94 | t == FBT_VECTOR_BOOL; |
| 95 | } |
| 96 | |
| 97 | inline bool IsFixedTypedVector(Type t) { |
| 98 | return t >= FBT_VECTOR_INT2 && t <= FBT_VECTOR_FLOAT4; |
no outgoing calls
no test coverage detected