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

Method find_last_not_of

include/boost/json/string.hpp:1972–1978  ·  view source on GitHub ↗

Find the last character missing from the specified string. Search from `pos` backwards for the first character in this string that is not equal to any of the characters in the string provided as the first argument. If `pos` is equal to @ref npos (the default), search from the last character. @li **(1)** compares with the characters in `sv`. @li **

Source from the content-addressed store, hash-verified

1970 @{
1971 */
1972 std::size_t
1973 find_last_not_of(
1974 string_view sv,
1975 std::size_t pos = npos) const noexcept
1976 {
1977 return subview().find_last_not_of(sv, pos);
1978 }
1979
1980 /** Overload
1981 @param ch The character to compare with.

Callers 1

testFindLastNotOfMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected