Home
last modified time | relevance | path

Searched defs:named_parameter_combine (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/boost/test/utils/
Dnamed_params.hpp181 struct named_parameter_combine struct
184 typedef typename NP::ref_type res_type;
185 typedef named_parameter_combine<NP,Rest> self_type;
188 named_parameter_combine( NP const& np, Rest const& r ) in named_parameter_combine() argument
195 res_type operator[]( keyword<typename NP::id,true> kw ) const { return m_param[kw]; } in operator []()
196 res_type operator[]( keyword<typename NP::id,false> kw ) const { return m_param[kw]; } in operator []()
199 … bool has( keyword<typename NP::id,false> kw ) const { return m_param.has( kw ); } in has()
202 void erase( keyword<typename NP::id,false> kw ) const { m_param.erase( kw ); } in erase()
209 void apply_to( Visitor& V ) const in apply_to()
217 NP m_param;