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)
Class template to provide a simple way to print the contents of an array.
Definition: ArrayPrinter.hpp:89
Definition: Array.hpp:108
std::enable_if<!std::is_same< T, char >::value, size_t >::type printElement(Print &p, T e)
Definition: ArrayPrinter.hpp:27
std::enable_if< std::is_class< ObjectType >::value, size_t >::type print(Print &p, const ObjectType &object)
Print an object.
Definition: Print.hpp:40