package sexp

  1. Overview
  2. Docs
type 'a t =
  1. | Hole of 'a
  2. | Atom of string
  3. | List of 'a t list
val t_of_sexp : (Core.Sexp.t -> 'a) -> Core.Sexp.t -> 'a t
val map : 'a t -> f:('a -> 'b) -> 'b t
val literal : Core.Sexp.t -> 'a t