so there's supposed to be a std::identity in functional, but I can't figure out how to assign it to a std::function
#include <functional>
#include <iostream>
int main()
{
long double val = 20;
std::function<long double(long double)> f;
f = std::identity;
std::cout << f(val);
return 0;
}```
This is the error I get `namespace "std" has no member "identity"`
But the console should output `20`, of course