2018-04-25 21:21:25 +02:00
|
|
|
# Stint
|
2018-04-25 19:51:14 +02:00
|
|
|
# Copyright 2018 Status Research & Development GmbH
|
|
|
|
# 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-10-06 11:55:08 +02:00
|
|
|
import ./datatypes, ./initialization, ./uint_bitwise_ops
|
2018-04-25 19:51:14 +02:00
|
|
|
|
2018-05-06 22:29:08 +02:00
|
|
|
func low*(T: typedesc[UintImpl]): T {.inline.}=
|
2018-04-25 19:51:14 +02:00
|
|
|
zero(T)
|
|
|
|
|
2018-05-06 22:29:08 +02:00
|
|
|
func high*(T: typedesc[UintImpl]): T {.inline.}=
|
2018-04-25 19:51:14 +02:00
|
|
|
not zero(T)
|