Why doesn't my processor have built-in BigInt support?

后端 未结 8 1790
执笔经年
执笔经年 2021-02-20 13:20

As far as I understood it, BigInts are usually implemented in most programming languages as arrays containing digits, where, eg.: when adding two of them, each digit is added on

8条回答
  •  走了就别回头了
    2021-02-20 14:12

    Binary Coded Decimal is a form of string math. The Intel x86 processors have opcodes for direct BCD arthmetic operations.

提交回复
热议问题