package comby-kernel

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Location : sig ... end
type location = Location.t
val location_to_yojson : location -> Yojson.Safe.t
val equal_location : location -> location -> Ppx_deriving_runtime.bool
val sexp_of_location : location -> Ppx_sexp_conv_lib.Sexp.t
val location_of_sexp : Ppx_sexp_conv_lib.Sexp.t -> location
module Range : sig ... end
type range = Range.t
val range_to_yojson : range -> Yojson.Safe.t
val equal_range : range -> range -> Ppx_deriving_runtime.bool
val sexp_of_range : range -> Ppx_sexp_conv_lib.Sexp.t
val range_of_sexp : Ppx_sexp_conv_lib.Sexp.t -> range
module Environment : sig ... end
type environment = Environment.t
val environment_to_yojson : environment -> Yojson.Safe.t
module Offset : sig ... end
type t = {
  1. range : range;
  2. environment : environment;
  3. matched : string;
}
val to_yojson : t -> Yojson.Safe.t
val create : ?range:range -> unit -> t
val convert_offset : fast:bool -> source:string -> t -> t
val pp : Format.formatter -> (string option * t list) -> unit
val pp_json_lines : Format.formatter -> (string option * t list) -> unit
val pp_match_count : Format.formatter -> (string option * t list) -> unit