| 5004 | } |
| 5005 | |
| 5006 | txBoolean fxToNumericNumberUnary(txMachine* the, txSlot* a, txBigIntUnary op) |
| 5007 | { |
| 5008 | if (fxToNumericNumber(the, a)) |
| 5009 | return 1; |
| 5010 | a->value.bigint = *(*op)(the, C_NULL, &a->value.bigint); |
| 5011 | a->kind = XS_BIGINT_KIND; |
| 5012 | the->stack = a; |
| 5013 | return 0; |
| 5014 | } |
| 5015 | |
| 5016 | txBoolean fxToNumericNumberBinary(txMachine* the, txSlot* a, txSlot* b, txBigIntBinary op) |
| 5017 | { |
no test coverage detected