MCPcopy Create free account
hub / github.com/boostorg/json / crbegin

Method crbegin

include/boost/json/string.hpp:918–922  ·  view source on GitHub ↗

Return a const reverse iterator to the first element of the reversed container. Returns the pointed-to character that corresponds to the last character of the non-reversed container. If the container is empty, @ref crend() is returned. @par Complexity Constant. @par Exception Safety No-throw guarantee. */

Source from the content-addressed store, hash-verified

916 No-throw guarantee.
917 */
918 const_reverse_iterator
919 crbegin() const noexcept
920 {
921 return const_reverse_iterator(impl_.end());
922 }
923
924 /** Return a reverse iterator to the character following the last character of the reversed container.
925

Callers 3

testIteratorsMethod · 0.80
testIteratorsMethod · 0.80
testIteratorsMethod · 0.80

Calls 1

endMethod · 0.45

Tested by

no test coverage detected