package mrmime

  1. Overview
  2. Docs
type box =
  1. | Box
  2. | TBox of int
  3. | BBox
type elt = [
  1. | Unstrctrd.elt
  2. | `Open of box
  3. | `Close
]
type t = elt list
val pp : Stdlib.Format.formatter -> [> Unstrctrd.elt ] list -> unit
module Decoder : sig ... end
module Craft : sig ... end
module Encoder : sig ... end
val of_string : string -> (Unstrctrd.t, [> `Msg of string ]) Stdlib.result
val to_string : elt list -> string