| 1206 | // types |
| 1207 | |
| 1208 | int UArray_isFloatType(const UArray *self) { |
| 1209 | return self->itemType == CTYPE_float32_t || |
| 1210 | self->itemType == CTYPE_float64_t; |
| 1211 | } |
| 1212 | |
| 1213 | int UArray_isSignedType(const UArray *self) { |
| 1214 | switch (self->itemType) { |
no outgoing calls
no test coverage detected