| 161 | } |
| 162 | |
| 163 | ~FixedArray() noexcept { |
| 164 | for (auto* cur = storage_.begin(); cur != storage_.end(); ++cur) { |
| 165 | AllocatorTraits::destroy(storage_.alloc(), cur); |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | // Assignments are deleted because they break the invariant that the size of a |
| 170 | // `FixedArray` never changes. |