This is not what you're looking for, see `array_assign`.
| 193 | |
| 194 | /// This is not what you're looking for, see `array_assign`. |
| 195 | static inline void _array__assign(Array *self, const Array *other, size_t element_size) { |
| 196 | _array__reserve(self, element_size, other->size); |
| 197 | self->size = other->size; |
| 198 | memcpy(self->contents, other->contents, self->size * element_size); |
| 199 | } |
| 200 | |
| 201 | /// This is not what you're looking for, see `array_swap`. |
| 202 | static inline void _array__swap(Array *self, Array *other) { |
nothing calls this directly
no test coverage detected