fix typos, WIP on NumF32ToParts

This commit is contained in:
Anton-4 2024-03-23 19:31:27 +01:00 committed by Fabian Schmalzried
parent 6786fd45c0
commit 35a26eb39f
No known key found for this signature in database
GPG key ID: D691D5DA4CEF42E7
2 changed files with 89 additions and 3 deletions

View file

@ -1427,8 +1427,8 @@ f32ToParts : F32 -> { sign : Bool, exponent : U8, fraction : U32 }
## Splits a [F64] into its components according to IEEE 754 standard.
f64ToParts : F64 -> { sign : Bool, exponent : U16, fraction : U64 }
## Compine parts of a [F32] according to IEEE 754 standard.
## Combine parts of a [F32] according to IEEE 754 standard.
f32FromParts : { sign : Bool, exponent : U8, fraction : U32 } -> F32
## Compine parts of a [F46] according to IEEE 754 standard.
## Combine parts of a [F64] according to IEEE 754 standard.
f64FromParts : { sign : Bool, exponent : U16, fraction : U64 } -> F64