v/vlib/math/big/big.v
2023-11-25 10:02:51 +03:00

22 lines
324 B
V

module big
pub const zero_int = Integer{
digits: []u32{len: 0}
signum: 0
is_const: true
}
pub const one_int = Integer{
digits: [u32(1)]
signum: 1
is_const: true
}
pub const two_int = Integer{
digits: [u32(2)]
signum: 1
is_const: true
}
pub const three_int = Integer{
digits: [u32(3)]
signum: 1
is_const: true
}