package functoria

  1. Overview
  2. Docs

Creation of CLI tools to assemble functors.

val check_version : name:string -> version:string -> string -> (unit, string) Stdlib.result

check_version ~name ~version data checks data for version constraints, and if present checks that the version matches the bounds. The data is expected to be a single line (an OCaml comment): (* <name> [>= a.b.c] [&] [< d.e.f] *).

module type S = sig ... end
module Make (P : S) : sig ... end