Versions in this module Expand all Collapse all v0 v0.2.1 Oct 15, 2023 v0.2.0 Oct 15, 2023 Changes in this version type Int128 + func (a Int128) Format(s fmt.State, ch rune) type Uint128 + func (a Uint128) Format(s fmt.State, ch rune) v0.1.1 Sep 10, 2023 v0.1.0 Sep 1, 2023 Changes in this version + type Int128 struct + H int64 + L uint64 + func Float64ToInt128(v float64) Int128 + func (a Int128) Add(b Int128) Int128 + func (a Int128) And(b Int128) Int128 + func (a Int128) AndNot(b Int128) Int128 + func (a Int128) Append(dst []byte, base int) []byte + func (a Int128) Cmp(b Int128) int + func (a Int128) Div(b Int128) Int128 + func (a Int128) DivMod(b Int128) (Int128, Int128) + func (a Int128) Lsh(i uint) Int128 + func (a Int128) MarshalJSON() ([]byte, error) + func (a Int128) MarshalText() ([]byte, error) + func (a Int128) Mod(b Int128) Int128 + func (a Int128) Mul(b Int128) Int128 + func (a Int128) Neg() Int128 + func (a Int128) Not() Int128 + func (a Int128) Or(b Int128) Int128 + func (a Int128) Quo(b Int128) Int128 + func (a Int128) QuoRem(b Int128) (Int128, Int128) + func (a Int128) Rem(b Int128) Int128 + func (a Int128) Rsh(i uint) Int128 + func (a Int128) String() string + func (a Int128) Sub(b Int128) Int128 + func (a Int128) Text(base int) string + func (a Int128) Uint128() Uint128 + func (a Int128) Xor(b Int128) Int128 + type Uint128 struct + H uint64 + L uint64 + func Float64ToUint128(v float64) Uint128 + func (a Uint128) Add(b Uint128) Uint128 + func (a Uint128) And(b Uint128) Uint128 + func (a Uint128) AndNot(b Uint128) Uint128 + func (a Uint128) Append(dst []byte, base int) []byte + func (a Uint128) Cmp(b Uint128) int + func (a Uint128) Div(b Uint128) Uint128 + func (a Uint128) DivMod(b Uint128) (Uint128, Uint128) + func (a Uint128) Int128() Int128 + func (a Uint128) LeadingZeros() int + func (a Uint128) Len() int + func (a Uint128) Lsh(i uint) Uint128 + func (a Uint128) MarshalJSON() ([]byte, error) + func (a Uint128) MarshalText() ([]byte, error) + func (a Uint128) Mod(b Uint128) Uint128 + func (a Uint128) Mul(b Uint128) Uint128 + func (a Uint128) Neg() Uint128 + func (a Uint128) Not() Uint128 + func (a Uint128) OnesCount() int + func (a Uint128) Or(b Uint128) Uint128 + func (a Uint128) Quo(b Uint128) Uint128 + func (a Uint128) QuoRem(b Uint128) (Uint128, Uint128) + func (a Uint128) Rem(b Uint128) Uint128 + func (a Uint128) Reverse() Uint128 + func (a Uint128) ReverseBytes() Uint128 + func (a Uint128) RotateLeft(k int) Uint128 + func (a Uint128) Rsh(i uint) Uint128 + func (a Uint128) String() string + func (a Uint128) Sub(b Uint128) Uint128 + func (a Uint128) Text(base int) string + func (a Uint128) TrailingZeros() int + func (a Uint128) Xor(b Uint128) Uint128