ArrayPrinter.hpp
Go to the documentation of this file.
27 template <typename T> typename std::enable_if<!std::is_same<T, char>::value, size_t>::type printElement(Print& p, T e)
32 template <typename T> typename std::enable_if<std::is_same<T, char>::value, size_t>::type printElement(Print& p, T c)
105 }
ArrayPrinter(const ArrayType &array)
Definition: ArrayPrinter.hpp:108
Definition: Array.hpp:107
std::enable_if<!std::is_same< T, char >::value, size_t >::type printElement(Print &p, T e)
Definition: ArrayPrinter.hpp:44
std::enable_if< std::is_class< ObjectType >::value, size_t >::type print(Print &p, const ObjectType &object)
Print an object.
Definition: Print.hpp:40