2018-04-25 19:21:25 +00:00
|
|
|
# Stint
|
2023-06-09 08:46:21 +00:00
|
|
|
# Copyright 2018-2023 Status Research & Development GmbH
|
2018-03-02 10:48:08 +00:00
|
|
|
# Licensed under either of
|
|
|
|
#
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
|
|
|
|
#
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
2018-02-15 14:01:08 +00:00
|
|
|
|
2023-06-20 14:38:02 +00:00
|
|
|
import stint/[io, uintops, intops, literals_stint, modular_arithmetic, int_modarith]
|
|
|
|
export io, uintops, intops, literals_stint, modular_arithmetic, int_modarith
|
2018-05-06 20:41:49 +00:00
|
|
|
|
|
|
|
type
|
2023-06-12 14:07:15 +00:00
|
|
|
Int128* = StInt[128]
|
|
|
|
Int256* = StInt[256]
|
2018-05-06 20:41:49 +00:00
|
|
|
UInt128* = StUint[128]
|
|
|
|
UInt256* = StUint[256]
|
|
|
|
|
2018-11-07 15:18:25 +00:00
|
|
|
func u128*(n: SomeInteger): UInt128 {.inline.} = n.stuint(128)
|
|
|
|
func u128*(s: string): UInt128 {.inline.} = s.parse(UInt128)
|
2018-05-06 20:41:49 +00:00
|
|
|
|
2018-11-07 15:18:25 +00:00
|
|
|
func u256*(n: SomeInteger): UInt256 {.inline.} = n.stuint(256)
|
|
|
|
func u256*(s: string): UInt256 {.inline.} = s.parse(UInt256)
|
2018-05-06 20:41:49 +00:00
|
|
|
|
2023-06-09 08:46:21 +00:00
|
|
|
func i128*(n: SomeInteger): Int128 {.inline.} = n.stint(128)
|
2023-06-14 01:06:44 +00:00
|
|
|
func i128*(s: string): Int128 {.inline.} = s.parse(Int128)
|
2018-05-06 20:41:49 +00:00
|
|
|
|
2023-06-09 08:46:21 +00:00
|
|
|
func i256*(n: SomeInteger): Int256 {.inline.} = n.stint(256)
|
2023-06-14 01:06:44 +00:00
|
|
|
func i256*(s: string): Int256 {.inline.} = s.parse(Int256)
|
2023-06-15 07:08:27 +00:00
|
|
|
|
|
|
|
# According to nim manual, you can write something like 1234567890'u256
|
|
|
|
# or 1234567890'i256, and the number will be passed as string to the
|
|
|
|
# constructor
|
2023-07-07 06:22:22 +00:00
|
|
|
|
|
|
|
func `'i128`*(s: static string): Int128 {.inline.} =
|
|
|
|
customLiteral(Int128, s)
|
|
|
|
|
|
|
|
func `'i256`*(s: static string): Int256 {.inline.} =
|
|
|
|
customLiteral(Int256, s)
|
|
|
|
|
|
|
|
func `'u128`*(s: static string): UInt128 {.inline.} =
|
|
|
|
customLiteral(UInt128, s)
|
|
|
|
|
|
|
|
func `'u256`*(s: static string): UInt256 {.inline.} =
|
|
|
|
customLiteral(UInt256, s)
|