package containers

  1. Overview
  2. Docs
A modular, clean and powerful extension of the OCaml standard library

Install

Dune Dependency

Authors

Maintainers

Sources

v3.11.tar.gz
md5=897b5af970ba48508a2ee001d90e8869
sha512=d4bf1219cc32017d6dee1462c9a6c555e3da833512cdc6e176a92e3a229497734cf6bc0cf2c2abd30183de860858468115c000c719742162e78080074149d317

doc/containers.codegen/Containers_codegen/index.html

Module Containers_codegenSource

Code generators

The code generator library is designed to be used from a build system (for example, from dune) to generate efficient code for features that are harder to provide at runtime.

The idea is that the build system should invoke some OCaml script that depends on containers.codegen; the script uses the DSL below to describe what code to generate (e.g. a description of a bitfield type) and emits a .ml file (and possibly a .mli file).

For example, the build script might contain:

module CG = Containers_codegen
let () =
  let module B = CG.Bitfield in
  let b = B.make ~name:"t" () in
  B.field_bit b "x";
  B.field_bit b "y";
  B.field_bit b "z";
  B.field_int b ~width:5 "foo";

  CG.emit_file "foo.mli" (B.gen_mli b);
  CG.emit_file "foo.ml" (B.gen_ml b);
  ()

and this will produce foo.ml and foo.mli with a bitfield containing x, y, and z.

Sourcemodule Fmt = CCFormat
Sourcetype code
Sourcemodule Code : sig ... end
Sourcemodule Bitfield : sig ... end
Sourceval emit_file : string -> code list -> unit

emit_file file cs emits code fragments cs into the given file at path file

Sourceval emit_chan : out_channel -> code list -> unit
Sourceval emit_string : code list -> string
OCaml

Innovation. Community. Security.

On This Page
  1. Code generators