std::inplace_vector<T,N>::begin, std::inplace_vector<T,N>::cbegin

Returns an iterator to the first element of the inplace_vector.

# Declarations

constexpr iterator begin() noexcept;

(since C++26)

constexpr const_iterator begin() const noexcept;

(since C++26)

constexpr const_iterator cbegin() const noexcept;

(since C++26)

# Return value

Iterator to the first element.

# See also