Documentation
¶
Index ¶
- func StoreBigEndian(b []byte, u Uint128)
- func StoreLittleEndian(b []byte, u Uint128)
- type Uint128
- func Add(x, y Uint128, carry uint64) (sum Uint128, carryOut uint64)
- func From64(v uint64) Uint128
- func FromBig(i *big.Int) Uint128
- func FromBigX(i *big.Int) (Uint128, bool)
- func LoadBigEndian(b []byte) Uint128
- func LoadLittleEndian(b []byte) Uint128
- func Max() Uint128
- func Mul(x, y Uint128) (hi, lo Uint128)
- func One() Uint128
- func Sub(x, y Uint128, borrow uint64) (diff Uint128, borrowOut uint64)
- func Zero() Uint128
- func (u Uint128) Add(v Uint128) Uint128
- func (u Uint128) Add64(v uint64) Uint128
- func (u Uint128) And(v Uint128) Uint128
- func (u Uint128) And64(v uint64) Uint128
- func (u Uint128) AndNot(v Uint128) Uint128
- func (u Uint128) AndNot64(v uint64) Uint128
- func (u Uint128) Big() *big.Int
- func (u Uint128) BitLen() int
- func (u Uint128) Cmp(v Uint128) int
- func (u Uint128) Cmp64(v uint64) int
- func (u Uint128) Div(v Uint128) Uint128
- func (u Uint128) Div64(v uint64) Uint128
- func (u Uint128) Equals(v Uint128) bool
- func (u Uint128) Equals64(v uint64) bool
- func (u Uint128) Format(s fmt.State, ch rune)
- func (u Uint128) IsZero() bool
- func (u Uint128) LeadingZeros() int
- func (u Uint128) Lsh(n uint) Uint128
- func (u Uint128) MarshalText() (text []byte, err error)
- func (u Uint128) Mod(v Uint128) Uint128
- func (u Uint128) Mod64(v uint64) uint64
- func (u Uint128) Mul(v Uint128) Uint128
- func (u Uint128) Mul64(v uint64) Uint128
- func (u Uint128) Not() Uint128
- func (u Uint128) OnesCount() int
- func (u Uint128) Or(v Uint128) Uint128
- func (u Uint128) Or64(v uint64) Uint128
- func (u Uint128) QuoRem(v Uint128) (Uint128, Uint128)
- func (u Uint128) QuoRem64(v uint64) (Uint128, uint64)
- func (u Uint128) Reverse() Uint128
- func (u Uint128) ReverseBytes() Uint128
- func (u Uint128) RotateLeft(k int) Uint128
- func (u Uint128) RotateRight(k int) Uint128
- func (u Uint128) Rsh(n uint) Uint128
- func (u Uint128) String() string
- func (u Uint128) Sub(v Uint128) Uint128
- func (u Uint128) Sub64(v uint64) Uint128
- func (u Uint128) TrailingZeros() int
- func (u *Uint128) UnmarshalText(text []byte) error
- func (u Uint128) Xor(v Uint128) Uint128
- func (u Uint128) Xor64(v uint64) Uint128
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func StoreBigEndian ¶
StoreBigEndian stores 128-bit value in byte slice in big-endian byte order. It panics if byte slice length is less than 16.
func StoreLittleEndian ¶
StoreLittleEndian stores 128-bit value in byte slice in little-endian byte order. It panics if byte slice length is less than 16.
Types ¶
type Uint128 ¶
Uint128 is an unsigned 128-bit number. All methods are immutable, works just like standard uint64.
Example (Json) ¶
ExampleUint128_json is an example for JSON marshaling.
package main import ( "encoding/json" "fmt" "github.com/Pilatuz/bigx/v2/uint128" ) func main() { foo := map[string]interface{}{ "bar": uint128.From64(12345), } buf, _ := json.Marshal(foo) fmt.Printf("%s", buf) }
Output: {"bar":"12345"}
Example (Load) ¶
ExampleUint128_load is an example for LoadBigEndian and LoadLittleEndian.
package main import ( "fmt" "net" "github.com/Pilatuz/bigx/v2/uint128" ) func main() { ip := net.ParseIP("cafe::dead:beaf") fmt.Printf("%032x\n", uint128.LoadBigEndian(ip.To16())) fmt.Printf("%032x\n", uint128.LoadLittleEndian(ip.To16())) }
Output: cafe00000000000000000000deadbeaf afbeadde00000000000000000000feca
func Add ¶
Add returns the sum with carry of x, y and carry: sum = x + y + carry. The carry input must be 0 or 1; otherwise the behavior is undefined. The carryOut output is guaranteed to be 0 or 1.
func FromBig ¶
FromBig converts *big.Int to 128-bit Uint128 value ignoring overflows. If input integer is nil or negative then return Zero. If input interger overflows 128-bit then return Max.
Example ¶
ExampleFromBig is an example for FromBig.
package main import ( "fmt" "math/big" "github.com/Pilatuz/bigx/v2/uint128" ) func main() { fmt.Println(uint128.FromBig(nil)) fmt.Println(uint128.FromBig(new(big.Int).SetInt64(12345))) }
Output: 0 12345
func FromBigX ¶
FromBigX converts *big.Int to 128-bit Uint128 value (eXtended version). Provides ok successful flag as a second return value. If input integer is negative or overflows 128-bit then ok=false. If input is nil then zero 128-bit returned.
Example ¶
ExampleFromBigX is an example for FromBigX.
package main import ( "fmt" "math/big" "github.com/Pilatuz/bigx/v2/uint128" ) func main() { one := new(big.Int).SetInt64(1) fmt.Println(uint128.FromBigX(new(big.Int).SetInt64(-1))) // => Zero() fmt.Println(uint128.FromBigX(one)) fmt.Println(uint128.FromBigX(one.Lsh(one, 128))) // 2^128, overflows => Max() }
Output: 0 false 1 true 340282366920938463463374607431768211455 false
func LoadBigEndian ¶
LoadBigEndian loads 128-bit value from byte slice in big-endian byte order. It panics if byte slice length is less than 16.
func LoadLittleEndian ¶
LoadLittleEndian loads 128-bit value from byte slice in little-endian byte order. It panics if byte slice length is less than 16.
func Mul ¶
Mul returns the 256-bit product of x and y: (hi, lo) = x * y with the product bits' upper half returned in hi and the lower half returned in lo.
func Sub ¶
Sub returns the difference of x, y and borrow: diff = x - y - borrow. The borrow input must be 0 or 1; otherwise the behavior is undefined. The borrowOut output is guaranteed to be 0 or 1.
func (Uint128) Add ¶
Add returns sum (u+v) of two 128-bit values. Wrap-around semantic is used here: Max().Add(From64(1)) == Zero()
func (Uint128) Add64 ¶
Add64 returns sum u+v of 128-bit and 64-bit values. Wrap-around semantic is used here: Max().Add64(1) == Zero()
func (Uint128) BitLen ¶
BitLen returns the minimum number of bits required to represent 128-bit value. The result is 0 for u == 0.
func (Uint128) Cmp ¶
Cmp compares two 128-bit values and returns:
-1 if u < v 0 if u == v +1 if u > v
func (Uint128) Cmp64 ¶
Cmp64 compares 128-bit and 64-bit values and returns:
-1 if u < v 0 if u == v +1 if u > v
func (Uint128) Equals ¶
Equals returns true if two 128-bit values are equal. Uint128 values can be compared directly with == operator but use of the Equals method is preferred for consistency.
func (Uint128) Format ¶
Format does custom formatting of 128-bit value.
Example ¶
ExampleUint128_Format is an example for Uint128.Format.
package main import ( "fmt" "github.com/Pilatuz/bigx/v2/uint128" ) func main() { fmt.Printf("%08b\n", uint128.From64(42)) fmt.Printf("%#O\n", uint128.From64(42)) fmt.Printf("%#x\n", uint128.Max()) }
Output: 00101010 0o52 0xffffffffffffffffffffffffffffffff
func (Uint128) LeadingZeros ¶
LeadingZeros returns the number of leading zero bits. The result is 128 for u == 0.
func (Uint128) MarshalText ¶
MarshalText implements the encoding.TextMarshaler interface.
func (Uint128) Mul ¶
Mul returns multiplication (u*v) of two 128-bit values. Wrap-around semantic is used here: Max().Mul(Max()) == From64(1).
func (Uint128) Mul64 ¶
Mul64 returns multiplication (u*v) of 128-bit and 64-bit values. Wrap-around semantic is used here: Max().Mul64(2) == Max().Sub64(1).
func (Uint128) QuoRem64 ¶
QuoRem64 returns quotient (u/v) and remainder (u%v) of 128-bit and 64-bit values.
func (Uint128) ReverseBytes ¶
ReverseBytes returns the value with bytes in reversed order.
func (Uint128) RotateLeft ¶
RotateLeft returns the value of u rotated left by (k mod 128) bits.
func (Uint128) RotateRight ¶
RotateRight returns the value of u rotated left by (k mod 128) bits.
func (Uint128) String ¶
String returns the base-10 representation of 128-bit value.
Example ¶
ExampleUint128_String is an example for Uint128.String.
package main import ( "fmt" "github.com/Pilatuz/bigx/v2/uint128" ) func main() { fmt.Println(uint128.Zero()) fmt.Println(uint128.One()) fmt.Println(uint128.Max()) }
Output: 0 1 340282366920938463463374607431768211455
func (Uint128) Sub ¶
Sub returns difference (u-v) of two 128-bit values. Wrap-around semantic is used here: Zero().Sub(From64(1)) == Max().
func (Uint128) Sub64 ¶
Sub64 returns difference (u-v) of 128-bit and 64-bit values. Wrap-around semantic is used here: Zero().Sub64(1) == Max().
func (Uint128) TrailingZeros ¶
TrailingZeros returns the number of trailing zero bits. The result is 128 for u == 0.
func (*Uint128) UnmarshalText ¶
UnmarshalText implements the encoding.TextUnmarshaler interface.