Strong typedef for a type T.
Typical usage:
Or:
using StrongTypedef::StrongTypedef;
};
Has all the:
- comparison (see "Operators" below)
- hashing
- streaming operators
- optimizaed logging for LOG_XXX()
If used with container-like type also has common STL functions:
- begin()
- end()
- cbegin()
- cend()
- size()
- empty()
- clear()
- operator[]
Operators: You can customize the operators that are available by passing the third argument of type StrongTypedefOps. See its docs for more info.
- Examples
- postgresql/functional_tests/basic_chaos/postgres_service.cpp, samples/digest_auth_service/auth_digest.cpp, samples/postgres_auth/auth_bearer.cpp, samples/postgres_auth/user_info_cache.hpp, and samples/postgres_service/postgres_service.cpp.
Definition at line 161 of file strong_typedef.hpp.