package dune-site

  1. Overview
  2. Docs
type t = {
  1. name : string option;
  2. entries : entry list;
}
and entry =
  1. | Comment of string
  2. | Rule of rule
  3. | Package of t
and rule = {
  1. var : string;
  2. predicates : predicate list;
  3. action : action;
  4. value : string;
}
and action =
  1. | Set
  2. | Add
and predicate =
  1. | Pos of string
  2. | Neg of string
module Parse : sig ... end