Lines Matching refs:In
43 … respective converter with only one task -- the actual task of conversion. In practice though that…
45 …ze the ['TypeOut] instance and, ['when] needed, to actually initialize it. In practice it is usual…
65 template<typename Out, typename In> Out convert (In const&); //#1
66 template<typename Out, typename In> Out convert (In const&, Out const& fallback); //#2
67 template<typename Out, typename In> bool convert (Out& result_out, In const&); //#3
68 …template<typename Out, typename In> bool convert (Out& result_out, In const&, Out const& fallback)…
83 bool convert (boost::optional<Out>&, In const&); //#3
84 bool convert (boost::optional<Out>&, In const&, Out const&); //#4
88 void convert (boost::optional<Out>&, In const&); //#3
92 boost::optional<Out> convert (In const&); //#3
96 Out convert (In const&); //#1
97 Out convert (In const&, Out const&); //#2
98 boost::optional<Out> convert (In const&); //#3
99 bool convert (boost::optional<Out>&, In const&, Out const&); //#4
116 boost::optional<Out> convert(In const&);
128 template<typename Out, typename In>
130 convert(In const& in, Out const& fallback) //#2
139 Out convert(In const&, Converter const&, Out const& fallback_value);
140 Out convert(In const&, Converter const&, Functor const& fallback_functor);
141 Out convert(In const&, Converter const&, boost::throw_on_failure);