The constants used throughout the tom unit.
variables
Trie constants
The plain option indicates absence of other options.
Reverse the string before insertion or lookup.
Ignore the case during a lookup; use lower-case characters during an insert.
Do not require a full match in a lookup; the longest prefix will match with this option specified.
Open flags
If the file exists, do nothing (and return nil).
If the file exists, raise a condition.
If the file exists and output_p, truncate it to zero length.
If the file exists and output_p, a new version of the file will be created (by unlinking the old file first).
If the file does not exist, do nothing (and return nil). If only input_p, nil will also be returned if it can't be opened anyway.
If the file does not exist, raise a condition.
If the file does not exist and output_p, create it.
Every write will append to the end of the file.
A mask for the above flags.
Retrieving information about a file.
Positioning a SeekableStream
Position absolute.
Position relative to the current position.
Position relative to the end of the file.
TypeDescription types.
This value indicates the void type. The other values follow the same naming convention.
This is not a real type; it merely denotes the number of TYPEDESC_ values.