10 #ifndef BOOST_BEAST_STRING_PARAM_HPP 11 #define BOOST_BEAST_STRING_PARAM_HPP 18 #include <boost/optional.hpp> 46 boost::optional<detail::static_ostream> os_;
49 typename std::enable_if<
50 std::is_integral<T>::value>::type
54 typename std::enable_if<
55 ! std::is_integral<T>::value &&
56 ! std::is_convertible<T, string_view>::value
64 typename std::enable_if<
65 std::is_integral<T>::value>::type
69 typename std::enable_if<
70 ! std::is_integral<T>::value>::type
78 template<
class T0,
class... TN>
80 print_n(T0
const&, TN
const&...);
82 template<
class T0,
class T1,
class... TN>
84 print(T0
const&, T1
const&, TN
const&...);
108 template<
class... Args>
Definition: async_result.hpp:20
Definition: string_param.hpp:42
boost::string_ref string_view
The type of string view used by the library.
Definition: string.hpp:36
string_param(string_param const &)=delete
Copy constructor (disallowed)
string_param & operator=(string_param const &)=delete
Copy assignment (disallowed)
string_view str() const
Returns the contained string.
Definition: string_param.hpp:113