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

Method operator -

libraries/float16/float16.cpp:86–91  ·  view source on GitHub ↗

///////////////////////////////////////////////////// NEGATION

Source from the content-addressed store, hash-verified

84// NEGATION
85//
86float16 float16::operator - ()
87{
88 float16 f16;
89 f16.setBinary(_value ^ 0x8000);
90 return f16;
91}
92
93
94//////////////////////////////////////////////////////////

Callers

nothing calls this directly

Calls 3

toDoubleMethod · 0.95
float16Class · 0.85
setBinaryMethod · 0.80

Tested by

no test coverage detected