QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
quickcpplib::_xxx::algorithm::memory Namespace Reference

Functions

template<class T , typename std::enable_if<(sizeof(T)==1), bool >::type = true, typename std::enable_if<(std::is_trivially_copyable< T >::value), bool >::type = true>
constexpr T * cmemcpy (T *dst, const T *src, size_t num)
 
template<class T , typename std::enable_if<(sizeof(T)==1), bool >::type = true, typename std::enable_if<(std::is_trivially_copyable< T >::value), bool >::type = true>
constexpr int cmemcmp (const T *a, const T *b, size_t num)
 
template<class T , typename std::enable_if<(sizeof(T)==1), bool >::type = true, typename std::enable_if<(std::is_trivially_copyable< T >::value), bool >::type = true>
constexpr T * cmemset (T *dst, T value, size_t num)
 

Function Documentation

◆ cmemcpy()

template<class T , typename std::enable_if<(sizeof(T)==1), bool >::type = true, typename std::enable_if<(std::is_trivially_copyable< T >::value), bool >::type = true>
constexpr T * quickcpplib::_xxx::algorithm::memory::cmemcpy ( T *  dst,
const T *  src,
size_t  num 
)
inlineconstexpr
41 {
42#if __cpp_lib_is_constant_evaluated >= 201811
43 if(std::is_constant_evaluated())
44 {
45#endif
46 for(size_t n = 0; n < num; n++)
47 {
48 dst[n] = src[n];
49 }
50#if __cpp_lib_is_constant_evaluated >= 201811
51 }
52 else
53 {
54 memcpy(dst, src, num);
55 }
56#endif
57 return dst;
58 }

◆ cmemcmp()

template<class T , typename std::enable_if<(sizeof(T)==1), bool >::type = true, typename std::enable_if<(std::is_trivially_copyable< T >::value), bool >::type = true>
constexpr int quickcpplib::_xxx::algorithm::memory::cmemcmp ( const T *  a,
const T *  b,
size_t  num 
)
inlineconstexpr
62 {
63#if __cpp_lib_is_constant_evaluated >= 201811
64 if(std::is_constant_evaluated())
65 {
66#endif
67 for(size_t n = 0; n < num; n++)
68 {
69 if(a[n] < b[n])
70 {
71 return -1;
72 }
73 else if(a[n] > b[n])
74 {
75 return 1;
76 }
77 }
78 return 0;
79#if __cpp_lib_is_constant_evaluated >= 201811
80 }
81 else
82 {
83 return memcmp(a, b, num);
84 }
85#endif
86 }

◆ cmemset()

template<class T , typename std::enable_if<(sizeof(T)==1), bool >::type = true, typename std::enable_if<(std::is_trivially_copyable< T >::value), bool >::type = true>
constexpr T * quickcpplib::_xxx::algorithm::memory::cmemset ( T *  dst,
value,
size_t  num 
)
inlineconstexpr
90 {
91#if __cpp_lib_is_constant_evaluated >= 201811
92 if(std::is_constant_evaluated())
93 {
94#endif
95 for(size_t n = 0; n < num; n++)
96 {
97 dst[n] = value;
98 }
99#if __cpp_lib_is_constant_evaluated >= 201811
100 }
101 else
102 {
103 memset(dst, (int) value, num);
104 }
105#endif
106 return dst;
107 }