package plist

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type pnode =
  1. | Array of pnode list
  2. | Dict of (string * pnode) list
  3. | Integer of int
  4. | String of string
  5. | Key of string
val make : pnode -> string
val parse_dict : string -> Yojson.Basic.json