Category | Native procedure | |||
Format | (gc) | |||
Parameters | none | |||
Description | gc invokes the garbage collector explicitely. The return value is #n. | |||
R4RS Compliance | LispMe extension | |||
Examples |
|
Category | Native procedure | ||||||
Format | (gensym) | ||||||
Parameters | none | ||||||
Description | gensym creates a new symbol, which is not
eq? to any other symbol, no matter if input or created
by a different call to gensym. This is guaranteed by
using # as its first char, which cannot be input. Since symbols are not garbage collected, it's possible to fill the entire atom space with this procedure. You should use the Reset heap command in this case. |
||||||
R4RS Compliance | LispMe extension | ||||||
Examples |
|
Category | Native procedure | |||
Format | (get-clipboard-text) | |||
Parameters | none | |||
Description | get-clipboard-text retrieves the contents of the system clipboard as a string or returns #f if the clipboard is not readable. | |||
R4RS Compliance | LispMe extension | |||
Examples |
|
Category | Native procedure | |||
Format | (get-output-string port) | |||
Parameters |
|
|||
Description | get-output-string retrieves the string buffer of port (which must be a string output port) containing the accumulated output. You can call this procedure several times without emptying the buffer, but always the same string will be returned, so don't modify it. The port must have been created by open-output-string before. | |||
R4RS Compliance | LispMe extension | |||
Examples |
|
Category | Native procedure | ||||||
Format | (get-sys-pref n) | ||||||
Parameters |
|
||||||
Description | get-sys-pref retrieves a value from the PalmOS
system preferences as an integer. The index of the preference
value is n, which corresponds to the enumeration
SystemPreferencesChoice defined in System/Preferences.h See also set-sys-pref. |
||||||
R4RS Compliance | LispMe extension | ||||||
Examples |
|
Back to index A B C D E F G H I J K L M N O P Q R S T U V W X Y Z Other