clang-format off
| 252 | { |
| 253 | // clang-format off |
| 254 | SmallVector(SegmentAllocator allocator = SegmentAllocator::Global) noexcept : Vector<T>( N * sizeof(T), allocator) {} |
| 255 | ~SmallVector() noexcept {} |
| 256 | SmallVector(const SmallVector& other) noexcept : SmallVector() { Vector<T>::operator=(other); } |
| 257 | SmallVector(SmallVector&& other) noexcept : SmallVector() { Vector<T>::operator=(move(other)); } |