Next: The List Library, Previous: Math And Text Utilities, Up: Libraries [Index]
Text is formatted on assumed or indicated output devices. The output functions have signatures in the form void <prefix>_<report>(arguments) or <type> <prefix>_<report>(arguments), where prefix indicates the output device and report indicates what and how is formatted. The prefix may be one of ‘o’ and ‘v’, with the formatting done on standard output or standard error, respectively, and ‘f’ and ‘b’, with the formatting done on the file or on the byte array indicated by the first argument.
The assumed output device functions (the ‘o’ and ‘v’ prefixed ones) evaluate to no value.
The indicated output device functions (the ‘f’ and ‘b’ prefixed ones) will have one extra first parameter, indicating the device. They evaluate to the device first argument.
See The File Library.
Thus the <prefix>_integer functions, formatting an integer in decimal include:
with output on standard output
with output on standard error
with output on f
with output on b
The function descriptions for the output library are given for assumed devices.