(&self, txn: &mut TransactionMut)
| 165 | } |
| 166 | |
| 167 | fn clear(&self, txn: &mut TransactionMut) { |
| 168 | let len = self.array_ref().len(txn); |
| 169 | self.array_ref().remove_range(txn, 0, len); |
| 170 | } |
| 171 | } |
| 172 | |
| 173 | impl ArrayRefExtension for ArrayRef { |
nothing calls this directly
no test coverage detected