| 94 | } |
| 95 | |
| 96 | txBoolean _xsGetAt(txMachine *the, txSlot *res, txSlot *self, txSlot *at) |
| 97 | { |
| 98 | txBoolean result; |
| 99 | mxOverflow(-2); |
| 100 | fxPush(*self); |
| 101 | fxPush(*at); |
| 102 | result = fxGetAt(the); |
| 103 | *res = fxPop(); |
| 104 | return result; |
| 105 | } |
| 106 | |
| 107 | txBoolean _xsGetIndex(txMachine *the, txSlot *res, txSlot *self, txIndex index) |
| 108 | { |