QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
memory.hpp File Reference
#include "../config.hpp"
#include <cstring>

Namespaces

namespace  quickcpplib
 The QuickCppLib namespace.
 
namespace  quickcpplib::_xxx
 Per commit unique namespace to prevent different git submodule versions clashing.
 
namespace  quickcpplib::_xxx::algorithm
 
namespace  quickcpplib::_xxx::algorithm::memory
 

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 * quickcpplib::_xxx::algorithm::memory::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 quickcpplib::_xxx::algorithm::memory::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 * quickcpplib::_xxx::algorithm::memory::cmemset (T *dst, T value, size_t num)