std::inplace_vector<T,N>::operator[]

Returns a reference to the element at specified location pos. No bounds checking is performed.

# Declarations

constexpr reference operator[]( size_type pos );

(since C++26)

constexpr const_reference operator[]( size_type pos ) const;

(since C++26)

# Parameters

# Return value

Reference to the requested element.

# Notes

Unlike std::map::operator[], this operator never inserts a new element into the container. Accessing a nonexistent element through this operator is undefined behavior.

# Example

#include <inplace_vector>
#include <iostream>
 
int main()
{
    std::inplace_vector<int, 4> numbers{2, 4, 6, 8};
 
    std::cout << "Second element: " << numbers[1] << '\n';
 
    numbers[0] = 5;
 
    std::cout << "All numbers:";
    for (auto i : numbers)
        std::cout << ' ' << i;
    std::cout << '\n';
}

# See also