construct(3) | construct(3) |
construct - adapt constructor to free function
#include <cfl/functions/construct.hpp>
struct T
{
template <typename U> T (U);
};
auto f = construct <T>;
auto r = f (0);
Adapt constructor to a free function.
A function.
construct
is a container function.
container(3)