package ppxlib
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=63117b67ea5863935455fe921f88fe333c0530f0483f730313303a93af817efd
sha512=9cfc9587657d17cdee5483e2a03292f872c42886e512bcc7442652e6418ce74c0135c731d8a68288c7fecae7f1b2defd93fe5acf8edb41e25144a8cec2806227
doc/ppxlib.stdppx/Stdppx/Char/index.html
Module Stdppx.Char
Source
include module type of struct include Caml.Char end
Return the ASCII code of the argument.
Return the character with the given ASCII 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 (32..126) are escaped, as well as backslash, double-quote, and single-quote.
Convert the given character to its equivalent lowercase character, using the ISO Latin-1 (8859-1) character set.
Convert the given character to its equivalent uppercase character, using the ISO Latin-1 (8859-1) character set.
Convert the given character to its equivalent lowercase character, using the US-ASCII character set.
Convert the given character to its equivalent uppercase character, using the US-ASCII character set.
An alias for the type of characters.