File indexing completed on 2025-01-18 09:53:27
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef BOOST_URL_GRAMMAR_ALNUM_CHARS_HPP
0011 #define BOOST_URL_GRAMMAR_ALNUM_CHARS_HPP
0012
0013 #include <boost/url/detail/config.hpp>
0014 #include <boost/url/grammar/detail/charset.hpp>
0015
0016 namespace boost {
0017 namespace urls {
0018 namespace grammar {
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041
0042
0043
0044
0045
0046
0047
0048
0049
0050 #ifdef BOOST_URL_DOCS
0051 constexpr __implementation_defined__ alnum_chars;
0052 #else
0053 struct alnum_chars_t
0054 {
0055 constexpr
0056 bool
0057 operator()(char c) const noexcept
0058 {
0059 return
0060 (c >= '0' && c <= '9') ||
0061 (c >= 'A' && c <= 'Z') ||
0062 (c >= 'a' && c <= 'z');
0063 }
0064
0065 #ifdef BOOST_URL_USE_SSE2
0066 char const*
0067 find_if(
0068 char const* first,
0069 char const* last) const noexcept
0070 {
0071 return detail::find_if_pred(
0072 *this, first, last);
0073 }
0074
0075 char const*
0076 find_if_not(
0077 char const* first,
0078 char const* last) const noexcept
0079 {
0080 return detail::find_if_not_pred(
0081 *this, first, last);
0082 }
0083 #endif
0084 };
0085
0086 constexpr alnum_chars_t alnum_chars{};
0087 #endif
0088
0089 }
0090 }
0091 }
0092
0093 #endif