package swhid

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type json =
  1. | Unit
  2. | Bool of bool
  3. | Float of float
  4. | String of string
  5. | Array of json list
  6. | Object of (string * json) list
exception Escape of (int * int) * (int * int) * Jsonm.error
val json_of_src : ?encoding:[< Jsonm.encoding ] -> [ `Channel of Stdlib.in_channel | `String of string ] -> (json, ((int * int) * (int * int)) * Jsonm.error) Stdlib.result
exception Found of json
val find : string -> json -> json option
val find_string : string -> json -> string option
val find_obj : string -> json -> (string * json) list option