127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
Subtraction.
{* <numbers...>}
Multiplication. The result is 1 if no arguments are specified.
{/ <number> <number>}
Division.
{band <numbers...>}
Bitwise AND. The result is -1 if no arguments are specified.
{bit <numbers...>}
The numbers are in range 0 to 31 and denote bit positions; the result is
a number with only those bits set.
|
>
>
>
>
|
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
Subtraction.
{* <numbers...>}
Multiplication. The result is 1 if no arguments are specified.
{/ <number> <number>}
Division.
{append <string> <tokens...>}
This works like {define} but adds to an existing definition rather than
replacing the definition.
{band <numbers...>}
Bitwise AND. The result is -1 if no arguments are specified.
{bit <numbers...>}
The numbers are in range 0 to 31 and denote bit positions; the result is
a number with only those bits set.
|