MCPcopy Create free account
hub / github.com/apache/fory / div

Method div

cpp/fory/util/float16.h:153–155  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

151 return from_float(a.to_float() * b.to_float());
152 }
153 [[nodiscard]] static float16_t div(float16_t a, float16_t b) noexcept {
154 return from_float(a.to_float() / b.to_float());
155 }
156
157 // Negate: flip sign bit directly (exact, no rounding).
158 [[nodiscard]] static float16_t neg(float16_t a) noexcept {

Callers

nothing calls this directly

Calls 1

to_floatMethod · 0.45

Tested by

no test coverage detected