package ppx_expect_nobase
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=c4fdd0b6c620d2b357c07669aadf0a25f89d86b57f77e4b460179263e20bf084
sha512=c5398e16907ca57e7b811e72fd209f76c4e5f1fcac199995eb74af87de4edac3285d21cd015aab196f82b9303958fc6d3a94a27dce9b808f608f79e75976ea73
doc/ppx_expect_nobase.wrappers/Wrappers/Char/index.html
Module Wrappers.CharSource
include module type of struct include Char end
Characters
An alias for the type of characters.
code c is the byte corresponding to c. If c is an ASCII character this corresponds to its encoding in ASCII or UTF-8.
Return the character with the given integer code.
Return a string representing the given character, with special characters escaped following the lexical conventions of OCaml. All characters outside the ASCII printable range [0x20;0x7E] are escaped, as well as backslash, double-quote, and single-quote.
Predicates and comparisons
See also the Ascii module.
The comparison function for characters, with the same specification as Stdlib.compare. Along with the type t, this function compare allows the module Char to be passed as argument to the functors Set.Make and Map.Make. The order is compatible with Char.code.
ASCII characters
ASCII character set support.
Use the equivalent Ascii.lowercase instead.
Use the equivalent Ascii.uppercase instead.
Hashing
A seeded hash function for characters, with the same output value as Hashtbl.seeded_hash. This function allows this module to be passed as argument to the functor Hashtbl.MakeSeeded.
An unseeded hash function for characters, with the same output value as Hashtbl.hash. This function allows this module to be passed as argument to the functor Hashtbl.Make.