package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module RegExp : sig ... end
type !'M t = {
  1. value : value;
  2. raw : string;
  3. comments : ('M, unit) Syntax.t option;
}
and value =
  1. | String of string
  2. | Boolean of bool
  3. | Null
  4. | Number of float
  5. | BigInt of float
  6. | RegExp of RegExp.t
val pp : (Ppx_deriving_runtime.Format.formatter -> 'M -> Ppx_deriving_runtime.unit) -> Ppx_deriving_runtime.Format.formatter -> 'M t -> Ppx_deriving_runtime.unit
val show : (Ppx_deriving_runtime.Format.formatter -> 'M -> Ppx_deriving_runtime.unit) -> 'M t -> Ppx_deriving_runtime.string
val pp_value : Ppx_deriving_runtime.Format.formatter -> value -> Ppx_deriving_runtime.unit
OCaml

Innovation. Community. Security.