use Pager;
// Postmortem: we were growing pages based on capacity, not on length. This
// means we could be accessing allocated, but uninitialized memory - which
// causes failures to occur.
// Postmortem: we were using `.insert()` inside `get_mut_or_alloc` which shifts
// values one to the right. This caused the value at postition 24 to become the
// value at position 25 after we did an insert before it. We fixed it by just
// overriding the value.