package octez-libs
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=ddfb5076eeb0b32ac21c1eed44e8fc86a6743ef18ab23fff02d36e365bb73d61
sha512=d22a827df5146e0aa274df48bc2150b098177ff7e5eab52c6109e867eb0a1f0ec63e6bfbb0e3645a6c2112de3877c91a17df32ccbff301891ce4ba630c997a65
doc/octez-libs.base/Tezos_base/Bounded/index.html
Module Tezos_base.Bounded
Source
This module implements bounded (or refined) versions of data types.
Signature for an interval of (included values) with an encoding and projection functions towards the underlying ocaml datatype.
Allows to build interval of int64 integers. The encoding used is Data_encoding.int64
regardless of the actual bounds.
Allows to build interval of int32 integers. The encoding used is Data_encoding.int32
regardless of the actual bounds.
Allows to build interval of non negative int32 integers. The encoding used is Data_encoding.int32
regardless of the actual bounds.
Allows to build interval of built-in OCaml int integers. The encoding used is Data_encoding.int31
regardless of the actual bounds.
Allows to build interval of int integers representable on 2 bytes. The encoding used is Data_encoding.int16
regardless of the actual bounds.
Allows to build interval of non-negative int integers representable on 2 bytes. The encoding used is Data_encoding.uint16
regardless of the actual bounds.
Allows to build interval of non-negative int integers representable on 1 bytes. The encoding used is Data_encoding.int8
regardless of the actual bounds.
Allows to build interval of non-negative int integers representable on 1 bytes. The encoding used is Data_encoding.uint8
regardless of the actual bounds.