For a nuclear-free lambda, this conversion is available implicitly:
Function f = [](int, double) -> double {};
If you just want to convert the lambda expression itself, you can use the unary operator +
to achieve this:
auto* p = +[](int, double) -> double {};
, ( ) ( , ).