B0_opam.File
type value = [
| `B of bool
| `L of bool * value list
| `Raw of string
| `S of string
]
type field = string * value
type section = string * string option * t
and comment = string
and item = [
| `Comment of comment
| `Field of field
| `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