1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- #ifndef BOOST_BEAST_STRING_HPP
- #define BOOST_BEAST_STRING_HPP
- #include <boost/beast/core/detail/config.hpp>
- #include <boost/beast/core/string_type.hpp>
- namespace boost {
- namespace beast {
- BOOST_BEAST_DECL
- bool
- iequals(
- beast::string_view lhs,
- beast::string_view rhs);
- struct iless
- {
- BOOST_BEAST_DECL
- bool
- operator()(
- string_view lhs,
- string_view rhs) const;
- using is_transparent = void;
- };
- struct iequal
- {
- bool
- operator()(
- string_view lhs,
- string_view rhs) const
- {
- return iequals(lhs, rhs);
- }
- using is_transparent = void;
- };
- }
- }
- #ifdef BOOST_BEAST_HEADER_ONLY
- #include <boost/beast/core/impl/string.ipp>
- #endif
- #endif
|