std::experimental::basic_string_view::operator[]
From cppreference.com
< cpp | experimental | basic string view
constexpr const_reference operator[](size_type pos) const;
|
(library fundamentals TS) | |
Returns a reference to the character at specified location pos
. No bounds checking is performed.
(n.b. unlike basic_string::operator[]
, basic_string_view::operator[](size())
has undefined behavior instead of returning CharT()
.)
Contents |
[edit] Parameters
pos | - | position of the character to return |
[edit] Return value
Reference to the requested character.
[edit] Complexity
Constant.
[edit] See also
access specified character with bounds checking (public member function) |