| Name |
Type |
Description |
| AND |
verb |
bitwise AND (&) |
| bitwise |
adverb |
bitwise operations |
| cd |
verb |
call DLL procedure |
| cdcb |
verb |
callback address |
| cder |
verb |
error information |
| cderx |
verb |
GetLastError information |
| cdf |
verb |
free DLLs |
| fc |
verb |
float conversion |
| fh |
verb |
free header |
| gh |
verb |
allocate header |
| ic |
verb |
integer conversion |
| mema |
verb |
memory allocate |
| memf |
verb |
memory free |
| memr |
verb |
memory read |
| memw |
verb |
memory write |
| OR |
verb |
bitwise OR (|) |
| symget |
verb |
get address of locale entry for name |
| symget |
verb |
set array as address |
| XOR |
verb |
bitwise XOR (^) |
bitwise
bitwise operations
(monadic and dyadic)
e.g. 7 = 1 OR 2 OR 4
= OR 1 2 4
ic
integer conversion
conversions
e.g.
25185 25699 = _1 ic 'abcd'
'abcd' = 1 ic _1 ic 'abcd'
1684234849 1751606885 = _2 ic 'abcdefgh'
'abcdefgh' = 2 ic _2 ic 'abcdefgh'
symget
set array as address
15!:6 - get address of locale entry for name
15!:7 - set array as address
15!:8 - allocate header
15!:9 - free header
|