| 1790 | return Value_From(r_cast<Array*>(array)->removeLast().get()); |
| 1791 | } |
| 1792 | DORA_EXPORT int32_t array_fast_remove(int64_t array, int64_t item) { |
| 1793 | return r_cast<Array*>(array)->fastRemove(Value_To(*r_cast<dora_val_t*>(item)).get()) ? 1 : 0; |
| 1794 | } |
| 1795 | |
| 1796 | /* Dictionary */ |
| 1797 |
no test coverage detected