TeaPacket v0.0.1
Multiplatform Game Engine
|
#include <string>
Go to the source code of this file.
Namespaces | |
namespace | TeaPacket |
Functions | |
void | TeaPacket::Print (const std::string &message) |
Prints a string to the debugging console. | |
template<typename T> | |
std::enable_if_t< std::is_arithmetic_v< T > > | TeaPacket::Print (const T &val) |
Prints arithmetic values. | |
template<> | |
std::enable_if_t< std::is_arithmetic_v< char > > | TeaPacket::Print (const char &val) |
Prints a character. | |
template<typename T> | |
std::enable_if_t<!std::is_arithmetic_v< T > > | TeaPacket::Print (const T &val) |
Prints a non-arithmetic, but string-convertable type. | |
void | TeaPacket::Print (const char *const &message) |
Prints a C string. | |
void | TeaPacket::Print (char *const &message) |
Also prints a C string. | |
template<typename T> | |
void | TeaPacket::PrintLine (const T &val) |
Prints a value, followed by a line. | |