array
array::front
array::operator[]
array::back
value
string
object
storage_ptr
Access the first element.
value& front() & noexcept; (1) value&& front() && noexcept; (2) value const& front() const& noexcept; (3)
Returns a reference to the first element.
! empty()
Constant.