package comby

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type printable_result =
  1. | Matches of {
    1. source_path : string option;
    2. matches : Comby_kernel.Match.t list;
    }
  2. | Replacements of {
    1. source_path : string option;
    2. replacements : Comby_kernel.Replacement.t list;
    3. result : string;
    4. source_content : string;
    }
type t = printable_result -> unit