Module B0_opam.File

type value = [
  1. | `B of bool
  2. | `L of bool * value list
  3. | `Raw of string
  4. | `S of string
]
type field = string * value
type section = string * string option * t
and comment = string
and item = [
  1. | `Comment of comment
  2. | `Field of field
  3. | `Section of section
]
and t = item list
val v2 : item
val to_string : normalize:bool -> t -> (string, string) result
val pkg_of_meta : with_name:bool -> B0_meta.t -> t