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

Class has_ull_print

src/IRProtocol.hpp:120–121  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

118// Detecting if we have print(unsigned long long value, int base) / print(0ull, 0) overload
119template<typename T, typename = void>
120struct has_ull_print: std::false_type {
121};
122template<typename T>
123struct has_ull_print<T, void_t<decltype(std::declval<T>().print(0ull, 0))>> : std::true_type {
124};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected