| 2 | |
| 3 | template <typename TFunc> |
| 4 | static auto DispatchGenericLambda(TFunc function) { |
| 5 | return function(); |
| 6 | } |
| 7 | |
| 8 | template <typename TFunc, typename ...TBools> |
| 9 | static auto DispatchGenericLambda(TFunc function, bool arg, TBools ...args) { |
no test coverage detected