Remove builtin bigint type and move it to stdlib #14
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Similar to the
complextype in #13, thebiginttype isn't used frequently enough to justify having it as a builtin, especially when it can be implemented using the other language features in the stdlib. Additionally, this opens up the possibility of having more arbitrary precision types, like BigRat, in the same stdlib module(s).This will also remove the complexity of
bigints in ranges and other places where they were previously used but their implementation was unclear.bigintbuiltin was removed in3fa937d1c5