| 9099 | |
| 9100 | template<typename ArgType, typename L> |
| 9101 | inline auto invokeLambda( L const &lambda, std::string const &arg ) -> ParserResult { |
| 9102 | ArgType temp{}; |
| 9103 | auto result = convertInto( arg, temp ); |
| 9104 | return !result |
| 9105 | ? result |
| 9106 | : LambdaInvoker<typename UnaryLambdaTraits<L>::ReturnType>::invoke( lambda, temp ); |
| 9107 | } |
| 9108 | |
| 9109 | template<typename L> |
| 9110 | struct BoundLambda : BoundValueRefBase { |
nothing calls this directly
no test coverage detected