package codept-lib

  1. Overview
  2. Docs

Various path implementation

module Simple : sig ... end

Path as a list of name

module S = Simple
module type Expr = sig ... end

Module paths with application

module type simple_core = sig ... end
module Make_expr (S : simple_core) : Expr with type s := S.t
module Expr : Expr with type s := S.t
module E = Expr
OCaml

Innovation. Community. Security.