| 9183 | |
| 9184 | template<typename ArgType, typename L> |
| 9185 | inline auto invokeLambda( L const &lambda, std::string const &arg ) -> ParserResult { |
| 9186 | ArgType temp{}; |
| 9187 | auto result = convertInto( arg, temp ); |
| 9188 | return !result |
| 9189 | ? result |
| 9190 | : LambdaInvoker<typename UnaryLambdaTraits<L>::ReturnType>::invoke( lambda, temp ); |
| 9191 | } |
| 9192 | |
| 9193 | template<typename L> |
| 9194 | struct BoundLambda : BoundValueRefBase { |
nothing calls this directly
no test coverage detected