-
Notifications
You must be signed in to change notification settings - Fork 1
/
table.html
320 lines (320 loc) · 7.8 KB
/
table.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
<tr>
<td>+</td>
<td>add</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Pops the top 2 values and pushes their sum</td>
</tr>
<tr>
<td>-</td>
<td>subtraction</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Pops the top 2 values and pushes their difference</td>
</tr>
<tr>
<td>*</td>
<td>subtraction</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Pops the top 2 values and pushes their product</td>
</tr>
<tr>
<td>/</td>
<td>divide</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Pops the top 2 values and pushes their quotient</td>
</tr>
<tr>
<td>%</td>
<td>modulo</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Pops the top 2 values and pushes their their remainder after division</td>
</tr>
<tr>
<td>$</td>
<td>at</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Pushes the current iteration index</td>
</tr>
<tr>
<td>null</td>
<td>ascendingSort</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Sorts the top array in ascending order</td>
</tr>
<tr>
<td>null</td>
<td>descendingSort</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Sorts the top array in descending order</td>
</tr>
<tr>
<td>null</td>
<td>square</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Pops the top value and pushes it's square</td>
</tr>
<tr>
<td>null</td>
<td>sqrt</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Pops the top value and pushes it's square</td>
</tr>
<tr>
<td>null</td>
<td>dup</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Pushes the top value</td>
</tr>
<tr>
<td>null</td>
<td>tan</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Pops the top value and pushes it's tan</td>
</tr>
<tr>
<td>null</td>
<td>sin</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Pops the top value and pushes it's sin</td>
</tr>
<tr>
<td>null</td>
<td>cos</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Pops the top value and pushes it's cos</td>
</tr>
<tr>
<td>null</td>
<td>empty</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Pops everything</td>
</tr>
<tr>
<td>null</td>
<td>stackLenght</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Pushes the length of the stack</td>
</tr>
<tr>
<td>null</td>
<td>element</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Pops the top value and pushes the element of the top array at that index</td>
</tr>
<tr>
<td>m</td>
<td>elementPop</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Pops the top value and the top array and pushes the element at that index</td>
</tr>
<tr>
<td>=</td>
<td>compare</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Pops the top 2 values and pushes their equality</td>
</tr>
<tr>
<td>p</td>
<td>print</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Print the top value</td>
</tr>
<tr>
<td>P</td>
<td>printPop</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Pop the top value and print it</td>
</tr>
<tr>
<td>.</td>
<td>increment</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Increment the top value with 1</td>
</tr>
<tr>
<td>_</td>
<td>decrement</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Decrement the top value with 1</td>
</tr>
<tr>
<td>null</td>
<td>toString</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Converts a to string</td>
</tr>
<tr>
<td>null</td>
<td>toInteger</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Converts a to number</td>
</tr>
<tr>
<td>null</td>
<td>toArray</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Converts a to array</td>
</tr>
<tr>
<td>null</td>
<td>fact</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Pops a and pushes its factoriel</td>
</tr>
<tr>
<td>null</td>
<td>ceil</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Ceils a</td>
</tr>
<tr>
<td>null</td>
<td>floor</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Floors a</td>
</tr>
<tr>
<td>g</td>
<td>bigger</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Checks if the last element is bigger than the previous one</td>
</tr>
<tr>
<td>l</td>
<td>less</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Checks if the last element is less than the previous one</td>
</tr>
<tr>
<td>&</td>
<td>bitswiseAnd</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Push the bitwise AND comparisment of the last two elements</td>
</tr>
<tr>
<td>|</td>
<td>bitswiseOr</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Push the bitwise OR comparisment of the last two elements</td>
</tr>
<tr>
<td>x</td>
<td>bitswiseXor</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Push the bitwise XOR comparisment of the last two elements</td>
</tr>
<tr>
<td>n</td>
<td>notEqual</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Pops the top 2 values and pushes 1 if they are not equal and 0 if they are equal</td>
</tr>
<tr>
<td>^</td>
<td>pop</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Pops the value depending on the modificator</td>
</tr>
<tr>
<td>O</td>
<td>doubleDup</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Duplicate the last two values</td>
</tr>
<tr>
<td>s</td>
<td>swap</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Swap the top 2 values</td>
</tr>
<tr>
<td>t</td>
<td>debugPrintStack</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">prints the stack (debugging)</td>
</tr>
<tr>
<td>~</td>
<td>NOP</td>
<td><input type="image", src="index.png"></td>
</tr>
<tr class="hidden">
<td colspan = "3">Does nothing.</td>
</tr>