package biocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. allow_empty_lines : bool;
  2. sharp_comments : bool;
}

Additional tags (c.f. Tags).

val default : t

Default tags ({allow_empty_lines = false; sharp_comments = true}).

val of_string : string -> (t, [> `wig of [> `tags_of_string of exn ] ]) Pervasives.result

Parse tags (for now S-Expressions).

val to_string : t -> string

Serialize tags (for now S-Expressions).

val t_of_sexp : Sexplib.Sexp.t -> t
val sexp_of_t : t -> Sexplib.Sexp.t