| 198 | } |
| 199 | |
| 200 | void fx_BigInt_bitLength(txMachine *the) |
| 201 | { |
| 202 | txBigInt* arg = fxToBigInt(the, mxArgv(0), 1); |
| 203 | mxResult->value.integer = fxBigInt_bitsize(arg);; |
| 204 | mxResult->kind = XS_INTEGER_KIND; |
| 205 | } |
| 206 | |
| 207 | void fx_BigInt_fromArrayBuffer(txMachine* the) |
| 208 | { |
nothing calls this directly
no test coverage detected