mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 19:58:18 +00:00
fix typos, WIP on NumF32ToParts
This commit is contained in:
parent
6786fd45c0
commit
35a26eb39f
2 changed files with 89 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue