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