fixstr::basic_fixed_string::end
fixstr::basic_fixed_string::cend
#1 |
| |
#2 |
| |
#3 |
|
Returns an iterator to the character following the last character of the fixed string.
This character acts as a placeholder, attempting to access it results in undefined behavior.
#
Parameters(none)
#
Return valueIterator to the character following the last character.
#
ComplexityConstant.
#
Example#include <algorithm>#include <fixed_string.hpp>#include <iostream>
int main(){ fixstr::fixed_string s = "Exemparl"; std::next_permutation(s.begin(), s.end()); std::cout << s << '\n'; // "Exemplar"}
Exemplar