Commit 02ace4569e
Changed files (1)
doc/langref.html.in
@@ -6828,9 +6828,12 @@ async fn func(y: *i32) void {
{#header_open|@mulAdd#}
<pre>{#syntax#}@mulAdd(comptime T: type, a: T, b: T, c: T) T{#endsyntax#}</pre>
<p>
- Fused multiply add (for floats), similar to {#syntax#}(a * b) + c{#endsyntax#}, except
+ Fused multiply add, similar to {#syntax#}(a * b) + c{#endsyntax#}, except
only rounds once, and is thus more accurate.
</p>
+ <p>
+ Supports Floats and Vectors of floats.
+ </p>
{#header_close#}
{#header_open|@byteSwap#}