Documentation
¶
Overview ¶
Package integer provides constants, as well as formatting, conversion, and checking functionality for Cadence integer number types
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( Int128TypeMinIntBig = func() *big.Int { int128TypeMin := big.NewInt(-1) int128TypeMin.Lsh(int128TypeMin, 127) return int128TypeMin }() Int128TypeMaxIntBig = func() *big.Int { int128TypeMax := big.NewInt(1) int128TypeMax.Lsh(int128TypeMax, 127) int128TypeMax.Sub(int128TypeMax, big.NewInt(1)) return int128TypeMax }() UInt128TypeMaxIntBig = func() *big.Int { uInt128TypeMax := big.NewInt(1) uInt128TypeMax.Lsh(uInt128TypeMax, 128) uInt128TypeMax.Sub(uInt128TypeMax, big.NewInt(1)) return uInt128TypeMax }() )
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.