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

Function println

src/IRProtocol.hpp:135–139  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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);
137 tLength += p->println(static_cast<uint32_t>(value), base);
138 return tLength;
139}
140
141template<typename PrintImplType, typename std::enable_if<has_ull_print<PrintImplType>::value, bool>::type = true>
142size_t print(PrintImplType *p, unsigned long long value, int base) {

Callers 1

decodeDistanceWidthMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected