MCPcopy Create free account
hub / github.com/RobTillaart/Arduino / operator +

Method operator +

libraries/float16/float16.cpp:98–101  ·  view source on GitHub ↗

///////////////////////////////////////////////////// MATH

Source from the content-addressed store, hash-verified

96// MATH
97//
98float16 float16::operator + (const float16 &f)
99{
100 return float16(this->toDouble() + f.toDouble());
101}
102
103float16 float16::operator - (const float16 &f)
104{

Callers

nothing calls this directly

Calls 2

toDoubleMethod · 0.95
float16Class · 0.85

Tested by

no test coverage detected