Looking at the documentation available for @intFromFloat, as an example, the website mentions:
Converts the integer part of a floating point number to the inferred result type.
If the integer part of the floating point number cannot fit in the destination type, it invokes safety-checked Illegal Behavior.
But the doc/langref.html.in from the zig source code at 0.16.0 tag mentions this builtin function as deprecated instead. What is shown on the website does match the zig source code at 0.15.2 tag, which makes me think some (at least this builtin function) parts of the docs of 0.16.0 are out of sync.
Do let me know if I'm missing something here.
Looking at the documentation available for `@intFromFloat`, as an example, the [website mentions](https://ziglang.org/documentation/0.16.0/#intFromFloat):
```
Converts the integer part of a floating point number to the inferred result type.
If the integer part of the floating point number cannot fit in the destination type, it invokes safety-checked Illegal Behavior.
```
But the `doc/langref.html.in` from the zig source code at [0.16.0 tag](https://codeberg.org/ziglang/zig/src/commit/24fdd5b7a4c1c8b5deb5b56756b9dbc8e08c86a8/doc/langref.html.in#L5138) mentions this builtin function as deprecated instead. What is shown on the website does match the zig source code at [0.15.2 tag](https://codeberg.org/ziglang/zig/src/commit/e4cbd752c8c05f131051f8c873cff7823177d7d3/doc/langref.html.in#L5059), which makes me think some (at least this builtin function) parts of the docs of 0.16.0 are out of sync.
Do let me know if I'm missing something here.