D | decay.hpp | 33 struct decay { struct 38 struct decay<T, U[]> { using type = U*; }; argument 40 struct decay<T, U[N]> { using type = U*; }; argument 43 struct decay<T, R(A...)> { using type = R(*)(A...); }; argument 45 struct decay<T, R(A..., ...)> { using type = R(*)(A..., ...); }; argument
|