package vecosek-engine

  1. Overview
  2. Docs
type printable =
  1. | Printable : 'a * ('a -> string) -> printable
type t = [
  1. | `Failure of string
  2. | `Midi_sequencer of string
  3. | `Time_master of string
  4. | `Generic of printable
]
val to_string : t -> string