const_reference operator[](size_type pos) const;
reference operator[](size_type pos);
Requires: pos <= size().
Returns: *(begin() + pos) if pos < size(). Otherwise, returns a reference to an object of type charT with value charT(), where modifying the object leads to undefined behavior.
Throws: Nothing.
Complexity: constant time.
const_reference at(size_type pos) const;
reference at(size_type pos);
Requires: pos < size()
Throws: out_of_range if pos >= size().
Returns: operator[](pos).
const charT& front() const;
charT& front();
Requires: !empty()
Effects: Equivalent to operator[](0).
const charT& back() const;
charT& back();
Requires: !empty()
Effects: Equivalent to operator[](size() - 1).