package camomile

  1. Overview
  2. Docs
A Unicode library

Install

dune-project
 Dependency

Authors

Maintainers

Sources

v2.1.0.tar.gz
md5=35c450853b72e286bef9b75ae4821621
sha512=fff70942e1866c5ad180a9de392a153809db7858f6d9f1067cd88db8b23b03643d09666abf09e6fae3d4da99f44570158b83170104cee68fdd5c1fc41b7c3e7b

doc/src/camomile.lib/configBase.ml.html

Source file configBase.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(** Configuration values *)
module type Type = sig
  (** Directory of compiled Unicode data *)
  val datadir : string

  (** Directory of compiled character mapping tables a la ISO *)
  val charmapdir : string

  (** Directory of camomile-style compiled character mapping table *)
  val unimapdir : string

  (** Directory of compiled locale data *)
  val localedir : string

  (** Read a data file. *)
  val get : string -> 'a
end