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

Method mul

cpp/fory/util/float16.h:150–152  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

148 return from_float(a.to_float() - b.to_float());
149 }
150 [[nodiscard]] static float16_t mul(float16_t a, float16_t b) noexcept {
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 }

Callers

nothing calls this directly

Calls 1

to_floatMethod · 0.45

Tested by

no test coverage detected