Malloy
Loading...
Searching...
No Matches
malloy::client::concepts::response_filter Concept Reference

Concept definition

template<typename F>
concept malloy::client::concepts::response_filter = std::move_constructible<F> && requires(const F& f, const typename F::header_type& h)
{
{
f.body_for(h)
{
std::visit(detail::response_filter_body_helper<F>{}, f.body_for(h))
};
}
Definition: type_traits.hpp:56
Definition: type_traits.hpp:123