| 4967 | } |
| 4968 | |
| 4969 | txBoolean fxToNumericIntegerUnary(txMachine* the, txSlot* a, txBigIntUnary op) |
| 4970 | { |
| 4971 | if (fxToNumericInteger(the, a)) |
| 4972 | return 1; |
| 4973 | a->value.bigint = *(*op)(the, C_NULL, &a->value.bigint); |
| 4974 | a->kind = XS_BIGINT_KIND; |
| 4975 | the->stack = a; |
| 4976 | return 0; |
| 4977 | } |
| 4978 | |
| 4979 | txBoolean fxToNumericIntegerBinary(txMachine* the, txSlot* a, txSlot* b, txBigIntBinary op) |
| 4980 | { |
no test coverage detected