boost::urls::grammar::find_if_not

Find the first character in the string that is not in CharSet

Synopsis

Declared in <boost/url/grammar/charset.hpp>

template<CharSet CS>
constexpr
char const*
find_if_not(
    char const const* first,
    char const const* last,
    CS const& cs) noexcept;

Exception Safety

Throws nothing.

Return Value

A pointer to the found character, otherwise the value last.

Parameters

NameDescription
firstA pointer to the first character in the string to search.
lastA pointer to one past the last character in the string to search.
csThe character set to use.

See Also

find_if_not.