| 1052 | } |
| 1053 | |
| 1054 | long UArray_find_(const UArray *self, const UArray *other) { |
| 1055 | DUARRAY_OP(UARRAY_FIND_TYPES, NULL, self, other); |
| 1056 | return -1; |
| 1057 | } |
| 1058 | |
| 1059 | int UArray_contains_(const UArray *self, const UArray *other) { |
| 1060 | return UArray_find_(self, other) != -1; |
no outgoing calls
no test coverage detected