Skip to content

Commit 429e0c8

Browse files
Rename float32/float64 to f32/f64. (#117)
* Rename `float32`/`float64` to `f32`/`f64`. The `float32` and `float64` types are being [renamed to `f32` and `f64`]. All the main tools have been updated to accept both old and new names for now, so there's no urgeny to change anything, but users who wish to can now start switching to the new `f32`/`f64` names. While here, also add some brief documentation mentioning the handling of NaNs in `f32`/`f64`. [renamed to `f32` and `f64`]: WebAssembly/component-model#277 * Update component-model/src/design/wit.md Co-authored-by: itowlson <[email protected]> --------- Co-authored-by: itowlson <[email protected]>
1 parent 83f3f4c commit 429e0c8

File tree

1 file changed

+3
-1
lines changed
  • component-model/src/design

1 file changed

+3
-1
lines changed

component-model/src/design/wit.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,12 @@ WIT defines the following primitive types:
9393
| `bool` | Boolean value - true or false. |
9494
| `s8`, `s16`, `s32`, `s64` | Signed integers of the appropriate width. For example, `s32` is a 32-bit integer. |
9595
| `u8`, `u16`, `u32`, `u64` | Unsigned integers of the appropriate width. For example, `u32` is a 32-bit integer. |
96-
| `float32`, `float64` | Floating-point numbers of the appropriate width. For example, `float64` is a 64-bit (double precision) floating-point number. |
96+
| `f32`, `f64` | Floating-point numbers of the appropriate width. For example, `f64` is a 64-bit (double precision) floating-point number. See the note on NaNs below. |
9797
| `char` | Unicode character. (Specifically, a [Unicode scalar value](https://unicode.org/glossary/#unicode_scalar_value).) |
9898
| `string` | A Unicode string - that is, a finite sequence of characters. |
9999

100+
The `f32` and `f64` types support the usual set of IEEE 754 single and double-precision values, except that they logically only have a single NaN value. The exact bit-level representation of a NaN is not guaranteed to be preserved when values pass through WIT interfaces.
101+
100102
### Lists
101103

102104
`list<T>` for any type T denotes an ordered sequence of values of type T. T can be any type, built-in or user-defined:

0 commit comments

Comments
 (0)