Skip to content

BigInt.Shift

Name - Description Default Type
<input> Big integer represented as bytes. Bytes
<output> Big integer represented as bytes. Bytes
By The shift is of the decimal point, i.e. of powers of ten, and is to the left if n is negative or to the right if n is positive. 0 Int&Int

Examples

1
2
3
4
5
6
7
4200 (BigInt) = .expected

42 (BigInt)
(BigInt.Shift
 ;:By
 2)
(BigInt.Is .expected) (Assert.Is true true)