/* * Copyright (c) 2018-2021, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include namespace AK { template class NonnullPtrVector : public Vector { using T = typename PtrType::ElementType; using Base = Vector; public: NonnullPtrVector() = default; NonnullPtrVector(Vector&& other) : Base(static_cast(other)) { } NonnullPtrVector(const Vector& other) : Base(static_cast(other)) { } using Base::size; using ConstIterator = SimpleIterator; using Iterator = SimpleIterator; ALWAYS_INLINE constexpr ConstIterator begin() const { return ConstIterator::begin(*this); } ALWAYS_INLINE constexpr Iterator begin() { return Iterator::begin(*this); } ALWAYS_INLINE constexpr ConstIterator end() const { return ConstIterator::end(*this); } ALWAYS_INLINE constexpr Iterator end() { return Iterator::end(*this); } ALWAYS_INLINE PtrType& ptr_at(size_t index) { return Base::at(index); } ALWAYS_INLINE const PtrType& ptr_at(size_t index) const { return Base::at(index); } ALWAYS_INLINE T& at(size_t index) { return *Base::at(index); } ALWAYS_INLINE const T& at(size_t index) const { return *Base::at(index); } ALWAYS_INLINE T& operator[](size_t index) { return at(index); } ALWAYS_INLINE const T& operator[](size_t index) const { return at(index); } ALWAYS_INLINE T& first() { return at(0); } ALWAYS_INLINE const T& first() const { return at(0); } ALWAYS_INLINE T& last() { return at(size() - 1); } ALWAYS_INLINE const T& last() const { return at(size() - 1); } private: // NOTE: You can't use resize() on a NonnullFooPtrVector since making the vector // bigger would require being able to default-construct NonnullFooPtrs. // Instead, use shrink(new_size). void resize(size_t) = delete; }; }