package sexp_grammar

  1. Overview
  2. Docs
type 'a t =
  1. | Optional of 'a
  2. | Required of 'a
val map : 'a t -> f:('a -> 'b) -> 'b t