package base
Install
Dune Dependency
Authors
Maintainers
Sources
md5=1716b735b93c9d068dd9790bb40d6562
sha512=ab1bf389889dda97235a76782858521256ab65290831c1234781bc4b3ec8186680616f64b922b0c9dfd11b2ed46e0be9e9b8778904a97ef5f849132b925fd210
doc/base/Base/Int_conversions/index.html
Module Base.Int_conversions
Source
Conversions between various integer types
Ocaml has the following integer types, with the following bit widths on 32-bit and 64-bit architectures.
arch arch type 32b 64b ---------------------- int 31 63 (32 when compiled to JavaScript) nativeint 32 64 int32 32 32 int64 64 64
In both cases, the following inequalities hold:
width(int) < width(nativeint)
&& width(int32) <= width(nativeint) <= width(int64)
The conversion functions come in one of two flavors.
If width(foo) <= width(bar) on both 32-bit and 64-bit architectures, then we have
val foo_to_bar : foo -> bar
otherwise we have
val foo_to_bar : foo -> bar option
val foo_to_bar_exn : foo -> bar
human-friendly string (and possibly sexp) conversions
in the output, to_string
, of_string
, sexp_of_t
, and t_of_sexp
convert between t
and signed hexadecimal with an optional "0x" or "0X" prefix.
global ref affecting whether the sexp_of_t
returned by Make
is consistent with the to_string
input or the to_string_hum
output
utility for defining to_string_hum on numeric types -- takes a string matching (-|+)?0-9a-fA-F
+ and puts delimiter
every chars_per_delimiter
characters starting from the right.
insert_delimiter_every ~chars_per_delimiter:3
insert_delimiter ~delimiter:'_'