based

Opinionated utility library
git clone git://git.dimitrijedobrota.com/based.git
Log | Files | Refs | README | LICENSE | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING

type_identity.hpp (131B)


0 #pragma once
2 namespace based::trait
3 {
5 template<class T>
6 struct TypeIdentity
7 {
8 using Type = T;
9 };
11 } // namespace based::trait