| 1057 | } |
| 1058 | |
| 1059 | int UArray_contains_(const UArray *self, const UArray *other) { |
| 1060 | return UArray_find_(self, other) != -1; |
| 1061 | } |
| 1062 | |
| 1063 | long UArray_find_from_(const UArray *self, const UArray *other, size_t from) { |
| 1064 | UArray s; |
no test coverage detected