package checked_oint
Install
Dune Dependency
Authors
Maintainers
Sources
md5=b480b179cbf345bb7c2e8400561cb725
sha512=1bb1de3bc4f812fc00e98c51d2a01697b3edb9be7cf14969ccd9e1e7a41f4e94d6a78c293053b3fe4387393446ac021912d56aaef4e1049f952bf265d3e47111
Description
Published: 08 Jan 2025
README
checked_oint
checked_oint
is an OCaml library for checked integer arithmetic. We support the full set of signed and unsigned integers of bitnesses 8, 16, 32, 64, and 128.
Installation
$ opam install checked_oint
Usage
open Checked_oint
let () =
let x = U8.of_int_exn 50 in
let y = U8.of_int_exn 70 in
assert (U8.equal (U8.add_exn x y) (U8.of_int_exn 120));
assert (Option.is_none (U8.mul x y))
You can find the API documentation here.
Implementation
u8
,u16
,i8
, andi16
are represented asint
internally.u32
andi32
(resp.u64
andi64
) are represented asint32
(resp.int64
) internally.u128
andi128
are represented as{ high : int64; low : int64 }
internally.Operations on integers of 8, 16, 32, and 64 bits are implemented primarily in OCaml, save a small amount of C stub functions.
Operations on 128-bit integers are implemented solely in C.
We heavily rely on the
__int128
extension by GCC and Clang.
Release procedure
Update the
version
field indune-project
.Type
dune build
to generatechecked_oint.opam
.Update
CHANGELOG.md
.Release the project in GitHub Releases.
Type
git pull && opam publish
.
Dependencies (6)
-
alcotest
>= "1.7.0"
- bisect_ppx
- ppx_enumerate
- ppx_deriving
-
dune
>= "3.14"
-
ocaml
>= "4.13"
Dev Dependencies (1)
-
odoc
with-doc
Used by (1)
Conflicts
None