// // XToolsCommon.h // cpp_tests // // Created by jief on 25.04.20. // Copyright © 2020 JF Knudsen. All rights reserved. // #ifndef XToolsCommon_h #define XToolsCommon_h struct _xtools__false_type { static constexpr bool value = false; bool v() const { return false; } }; struct _xtools__true_type { static constexpr bool value = true; bool v() const { return true; } }; /* make unsigned */ template struct _xtools__make_unsigned {}; template <> struct _xtools__make_unsigned< char> {typedef unsigned char type;}; template <> struct _xtools__make_unsigned< signed char> {typedef unsigned char type;}; template <> struct _xtools__make_unsigned< unsigned char> {typedef unsigned char type;}; template <> struct _xtools__make_unsigned< char16_t> {typedef char16_t type;}; template <> struct _xtools__make_unsigned< char32_t> {typedef char32_t type;}; #if WCHAR_MAX <= 0xFFFF template <> struct _xtools__make_unsigned< wchar_t> {typedef char16_t type;}; #else template <> struct _xtools__make_unsigned< wchar_t> {typedef char32_t type;}; #endif template <> struct _xtools__make_unsigned< short> {typedef unsigned short type;}; template <> struct _xtools__make_unsigned< unsigned short> {typedef unsigned short type;}; template <> struct _xtools__make_unsigned< int> {typedef unsigned int type;}; template <> struct _xtools__make_unsigned< unsigned int> {typedef unsigned int type;}; template <> struct _xtools__make_unsigned< long> {typedef unsigned long type;}; template <> struct _xtools__make_unsigned< unsigned long> {typedef unsigned long type;}; template <> struct _xtools__make_unsigned< long long> {typedef unsigned long long type;}; template <> struct _xtools__make_unsigned {typedef unsigned long long type;}; // is_integral template struct _xtools__is_integral_st : public _xtools__false_type {}; //template <> struct _xtools__is_integral_st : public _xtools__true_type {}; //template <> struct _xtools__is_integral_st : public _xtools__true_type {}; //template <> struct _xtools__is_integral_st : public _xtools__true_type {}; //template <> struct _xtools__is_integral_st : public _xtools__true_type {}; //template <> struct _xtools__is_integral_st : public _xtools__true_type {}; template <> struct _xtools__is_integral_st : public _xtools__true_type {}; template <> struct _xtools__is_integral_st : public _xtools__true_type {}; template <> struct _xtools__is_integral_st : public _xtools__true_type {}; template <> struct _xtools__is_integral_st : public _xtools__true_type {}; template <> struct _xtools__is_integral_st : public _xtools__true_type {}; template <> struct _xtools__is_integral_st : public _xtools__true_type {}; template <> struct _xtools__is_integral_st : public _xtools__true_type {}; template <> struct _xtools__is_integral_st : public _xtools__true_type {}; // is_char // Looks like I don't need to remove reference. // This : template // void strcpy(O otherChar) // is still enabled if parameter is a char& template struct _xtools__is_char_st : public _xtools__false_type {}; template <> struct _xtools__is_char_st : public _xtools__true_type {}; template <> struct _xtools__is_char_st : public _xtools__true_type {}; template <> struct _xtools__is_char_st : public _xtools__true_type {}; template <> struct _xtools__is_char_st : public _xtools__true_type {}; template <> struct _xtools__is_char_st : public _xtools__true_type {}; template <> struct _xtools__is_char_st : public _xtools__true_type {}; // //// STRUCT TEMPLATE remove_reference //template // struct remove_ref // { // remove reference // using type = _Ty; // }; // //template // struct remove_ref<_Ty&> // { // remove reference // using type = _Ty; // }; // STRUCT TEMPLATE remove_const //template // struct remove_const // { // remove const // typedef _Ty type; // }; // //template // struct remove_const // { // remove const // typedef _Ty type; // }; template< class T > struct _xtools__remove_ref { typedef T type; }; template< class T > struct _xtools__remove_ref { typedef T type; }; template< class T > struct _xtools__remove_const { typedef T type; }; template< class T > struct _xtools__remove_const { typedef T type; }; template< class T > struct _xtools__remove_const { typedef T& type; }; template< class T > struct _xtools__remove_const { typedef T* type; }; template< class T > struct _xtools__remove_const_ptr { typedef T type; }; template< class T > struct _xtools__remove_const_ptr { typedef T type; }; template< class T > struct _xtools__remove_const_ptr { typedef T type; }; template< class T > struct _xtools__remove_const_ptr { typedef T type; }; template< class T, int n > struct _xtools__remove_const_ptr { typedef T type; }; template< class T, int n > struct _xtools__remove_const_ptr { typedef T type; }; // is_char_ptr template struct _xtools__is_char_ptr_st : public _xtools__false_type {}; template <> struct _xtools__is_char_ptr_st : public _xtools__true_type {}; template <> struct _xtools__is_char_ptr_st : public _xtools__true_type {}; template struct _xtools__is_char_ptr_st : public _xtools__true_type {}; template <> struct _xtools__is_char_ptr_st : public _xtools__true_type {}; template <> struct _xtools__is_char_ptr_st : public _xtools__true_type {}; template struct _xtools__is_char_ptr_st : public _xtools__true_type {}; template <> struct _xtools__is_char_ptr_st : public _xtools__true_type {}; template <> struct _xtools__is_char_ptr_st : public _xtools__true_type {}; template struct _xtools__is_char_ptr_st : public _xtools__true_type {}; template <> struct _xtools__is_char_ptr_st : public _xtools__true_type {}; template <> struct _xtools__is_char_ptr_st : public _xtools__true_type {}; template struct _xtools__is_char_ptr_st : public _xtools__true_type {}; template <> struct _xtools__is_char_ptr_st : public _xtools__true_type {}; template <> struct _xtools__is_char_ptr_st : public _xtools__true_type {}; template struct _xtools__is_char_ptr_st : public _xtools__true_type {}; template <> struct _xtools__is_char_ptr_st : public _xtools__true_type {}; template <> struct _xtools__is_char_ptr_st : public _xtools__true_type {}; template struct _xtools__is_char_ptr_st : public _xtools__true_type {}; /* enable_if */ template struct _xtools_enable_if_t {}; template struct _xtools_enable_if_t { typedef T type; }; template< class... > using _xtools__void_t = void; /* has type member */ // primary template handles types that have no nested ::type member: template< class, class = _xtools__void_t<> > struct _xtools__has_type_member : _xtools__false_type { }; // specialization recognizes types that do have a nested ::type member: template< class T > struct _xtools__has_type_member> : _xtools__true_type { }; #define remove_const(x) typename _xtools__remove_const::type #define unsigned_type(x) typename _xtools__make_unsigned::type #define remove_ref(x) typename _xtools__remove_ref::type #define remove_const_ptr(x) typename _xtools__remove_const_ptr::type #define is_integral(x) _xtools__is_integral_st::value #define is_char(x) _xtools__is_char_st::value #define is_char_ptr(x) _xtools__is_char_ptr_st::type>::value #define enable_if_t(x) typename _xtools_enable_if_t::type #define enable_if(x) typename enable_if_type = typename _xtools_enable_if_t::type #endif /* XToolsCommon_h */