basedOpinionated utility library |
git clone git://git.dimitrijedobrota.com/based.git |
Log | Files | Refs | README | LICENSE | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING |
type_identity.hpp (223B)
0 #pragma once
2 namespace based
3 {
5 // clang-format off
7 template<class T> struct type_identity { using type = T; };
9 template<class T> using type_dentity_t = type_identity<T>::type;
11 // clang-format on
13 } // namespace based