package elpi

  1. Overview
  2. Docs
type sequent = {
  1. eigen : Term.t;
  2. context : Term.t;
  3. conclusion : Term.t;
}
and 'attribute t = {
  1. to_match : sequent list;
  2. to_remove : sequent list;
  3. guard : Term.t option;
  4. new_goal : sequent option;
  5. attributes : 'attribute;
  6. loc : Loc.t;
}
val show_sequent : sequent -> Ppx_deriving_runtime.string