MCPcopy Create free account
hub / github.com/RobTillaart/Arduino / printTo

Method printTo

libraries/float16/float16.cpp:23–27  ·  view source on GitHub ↗

PRINTING

Source from the content-addressed store, hash-verified

21
22// PRINTING
23size_t float16::printTo(Print& p) const
24{
25 double d = this->f16tof32(_value);
26 return p.print(d, _decimals);
27};
28
29double float16::toDouble() const
30{

Callers

nothing calls this directly

Calls 1

f16tof32Method · 0.95

Tested by

no test coverage detected