12.6.2.2175 S>F S to F FLOATING EXT

( n -- ) ( F: -- r ) or ( n -- r )

r is the floating-point equivalent of the single-cell value n. An ambiguous condition exists if n can not be precisely represented as a floating-point value.

See:

Implementation:

: S>F ( n -- r )
   S>D D>F
;

ContributeContributions

AntonErtlavatar of AntonErtl [254] PronounciationExample2022-08-15 13:29:09

In keeping with the style of other pronounciations (e.g., for s>d), the pronounciation for s>f should be "s-to-f".

Reply New Version