Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
boost::mqtt5::prop::properties::visit

Invokes a visitor function on each Property.

template<
    typename Func,
    std::enable_if_t< is_visitor< Func >::value, bool > = true>
constexpr bool
visit(
    Func&& func) const noexcept(is_nothrow_visitor< Func >::value);
  » more...

template<
    typename Func,
    std::enable_if_t< is_visitor< Func >::value, bool > = true>
constexpr bool
visit(
    Func&& func) noexcept(is_nothrow_visitor< Func >::value);
  » more...

PrevUpHomeNext