diff --git a/doc/langref.html.in b/doc/langref.html.in index c39d15de9d..8ab15b4c74 100644 --- a/doc/langref.html.in +++ b/doc/langref.html.in @@ -6828,9 +6828,12 @@ async fn func(y: *i32) void { {#header_open|@mulAdd#}
{#syntax#}@mulAdd(comptime T: type, a: T, b: T, c: T) T{#endsyntax#}

- 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.

+

+ Supports Floats and Vectors of floats. +

{#header_close#} {#header_open|@byteSwap#}