package comby-kernel

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type escapable_string_literals = {
  1. delimiters : string list;
  2. escape_character : char;
}
val escapable_string_literals_to_yojson : escapable_string_literals -> Yojson.Safe.t
type comment_kind =
  1. | Multiline of string * string
  2. | Nested_multiline of string * string
  3. | Until_newline of string
val comment_kind_to_yojson : comment_kind -> Yojson.Safe.t
type t = {
  1. user_defined_delimiters : (string * string) list;
  2. escapable_string_literals : escapable_string_literals option;
  3. raw_string_literals : (string * string) list;
  4. comments : comment_kind list;
}
val to_yojson : t -> Yojson.Safe.t
module type S = sig ... end