MCPcopy Create free account
hub / github.com/Arduino-IRremote/Arduino-IRremote / print

Function print

src/IRProtocol.hpp:129–133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

127namespace PrintULL {
128template<typename PrintImplType, typename std::enable_if<!has_ull_print<PrintImplType>::value, bool>::type = true>
129size_t print(PrintImplType *p, unsigned long long value, int base) {
130 size_t tLength = p->print(static_cast<uint32_t>(value >> 32), base);
131 tLength += p->print(static_cast<uint32_t>(value), base);
132 return tLength;
133}
134template<typename PrintImplType, typename std::enable_if<!has_ull_print<PrintImplType>::value, bool>::type = true>
135size_t println(PrintImplType *p, unsigned long long value, int base) {
136 size_t tLength = p->print(static_cast<uint32_t>(value >> 32), base);

Callers 5

IRReceive.hppFile · 0.85
printIRSendUsageMethod · 0.85
printIRResultMinimalMethod · 0.85
printstrMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected