| 280 | } |
| 281 | |
| 282 | inline U get(uint64_t idx, const transaction::Transaction* transaction) { |
| 283 | U val; |
| 284 | diskArray.get(idx, transaction, getSpan(val)); |
| 285 | return val; |
| 286 | } |
| 287 | |
| 288 | // Note: Currently, this function doesn't support shrinking the size of the array. |
| 289 | inline uint64_t resize(PageAllocator& pageAllocator, |
no test coverage detected