Utility.hpp
Go to the documentation of this file.
123 template <typename T> FSTR_INLINE typename std::enable_if<sizeof(T) == 1, T>::type readValue(const T* ptr)
128 template <typename T> FSTR_INLINE typename std::enable_if<sizeof(T) == 2, T>::type readValue(const T* ptr)
133 template <typename T> FSTR_INLINE typename std::enable_if<IS_ALIGNED(sizeof(T)), T>::type readValue(const T* ptr)
#define pgm_read_byte(addr)
Definition: Arch/Esp8266/Components/libc/include/sys/pgmspace.h:135
#define pgm_read_word(addr)
Definition: Arch/Esp8266/Components/libc/include/sys/pgmspace.h:136
Definition: Utility.hpp:59
std::enable_if< IS_ALIGNED(sizeof(T)), T >::type readValue(const T *ptr)
Definition: Utility.hpp:133
Definition: Array.hpp:107