std::basic_string::begin, std::basic_string::cbegin
From Cppreference
< cpp | string | basic string
iterator begin();
|
||
const_iterator begin() const;
|
||
const_iterator cbegin() const;
|
(C++11 feature) | |
Returns an iterator to the first character of the string.
Contents |
[edit] Parameters
(none)
[edit] Return value
iterator to the first character
[edit] Complexity
Constant
[edit] See also
|
returns an iterator to the end (public member function) |