Skip to content
This repository has been archived by the owner on Sep 7, 2024. It is now read-only.

Commit

Permalink
Tweak README
Browse files Browse the repository at this point in the history
  • Loading branch information
shabbyrobe committed Sep 7, 2024
1 parent e1ae303 commit 3721076
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ num: 128-bit signed and unsigned integers for Go
================================================

> [!WARNING]
> This repo has moved to sourcehut (https://git.sr.ht/~shabbyrobe/go-num). This
> version will remain here for the time being but may be removed at a later date. You
> may also consider https://pkg.go.dev/lukechampine.com/uint128 for your use case as
> I am unlikely to spend much time on this in future unless a serious bug is found.
> This repo has moved to sourcehut (https://git.sr.ht/~shabbyrobe/go-num), and has
> also been placed into **maintenance mode**. This version will remain here for the
> time being but may be removed at a later date. You may also consider
> https://pkg.go.dev/lukechampine.com/uint128 for your use case as I am unlikely to
> spend much time on this in future unless a serious bug is found.
---

Fastish `int128` (`num.I128`) and `uint128` (`num.U128`) 128-bit integer types
for Go, providing the majority of methods found in `big.Int`.

> [!WARNING]
> Function execution times in this library _almost always_ depend on the
> inputs. This library is inappropriate for use in any domain where it is important
> that the execution time does not reveal details about the inputs used.
**WARNING**: Function execution times in this library _almost always_ depend on the
inputs. This library is inappropriate for use in any domain where it is important
that the execution time does not reveal details about the inputs used.

`I128` is a signed "two's complement" implementation that should behave the
same way on overflow as `int64`.
Expand Down

0 comments on commit 3721076

Please sign in to comment.