mirror of
https://github.com/vlang/v.git
synced 2025-09-08 14:51:53 -04:00
23 lines
340 B
V
23 lines
340 B
V
module big
|
|
|
|
pub const zero_int = Integer{
|
|
digits: []u64{len: 0}
|
|
signum: 0
|
|
is_const: true
|
|
}
|
|
pub const one_int = Integer{
|
|
digits: [u64(1)]
|
|
signum: 1
|
|
is_const: true
|
|
}
|
|
pub const two_int = Integer{
|
|
digits: [u64(2)]
|
|
signum: 1
|
|
is_const: true
|
|
}
|
|
pub const three_int = Integer{
|
|
digits: [u64(3)]
|
|
signum: 1
|
|
is_const: true
|
|
}
|