adding yasli
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@215 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
parent
f994398a51
commit
cf4af691c2
7 changed files with 1520 additions and 0 deletions
75
include/loki/yasli/yasli_traits.h
Executable file
75
include/loki/yasli/yasli_traits.h
Executable file
|
@ -0,0 +1,75 @@
|
|||
#ifndef YASLI_TRAITS_H_
|
||||
#define YASLI_TRAITS_H_
|
||||
|
||||
|
||||
namespace yasli_nstd
|
||||
{
|
||||
/*
|
||||
template <bool b, class T = void>
|
||||
struct enable_if {};
|
||||
|
||||
template <class T>
|
||||
struct enable_if<true, T> { typedef T type; };
|
||||
*/
|
||||
|
||||
//!! TYPE SELECTORS
|
||||
//Used in place of enable_if:
|
||||
//not so neat or so versitile but they do compile
|
||||
template<bool condition, class if_true, class if_false>
|
||||
struct type_selector
|
||||
{
|
||||
typedef if_true result;
|
||||
};
|
||||
|
||||
template<class if_true, class if_false>
|
||||
struct type_selector<false, if_true, if_false>
|
||||
{
|
||||
typedef if_false result;
|
||||
};
|
||||
|
||||
// Types for differentiating compile-time choices
|
||||
typedef char (&yes_t)[1];
|
||||
typedef char (&no_t)[2];
|
||||
|
||||
// Credit goes to Boost;
|
||||
// also found in the C++ Templates book by Vandevoorde and Josuttis
|
||||
|
||||
//!! Wouldn't compile with these inside is_class
|
||||
template <class U>
|
||||
yes_t class_test(int U::*);
|
||||
template <class U>
|
||||
no_t class_test(...);
|
||||
|
||||
template <class T> struct is_class
|
||||
{
|
||||
enum { value = (sizeof(class_test<T>(0)) == sizeof(yes_t)) };
|
||||
};
|
||||
|
||||
template <typename T> struct is_pointer
|
||||
{
|
||||
enum { value = false };
|
||||
};
|
||||
|
||||
template <typename T> struct is_pointer<T*>
|
||||
{
|
||||
enum { value = true };
|
||||
};
|
||||
|
||||
template <typename T> struct is_memcopyable
|
||||
{
|
||||
enum { value = int(!is_class<T>::value) };
|
||||
};
|
||||
|
||||
|
||||
template <typename T> struct is_memmoveable
|
||||
{
|
||||
enum { value = int(!is_class<T>::value) };
|
||||
};
|
||||
|
||||
|
||||
// For moving
|
||||
enum move_t { move };
|
||||
|
||||
} // namespace yasli_nstd
|
||||
|
||||
#endif // YASLI_TRAITS_H_
|
Loading…
Add table
Add a link
Reference in a new issue