package lo

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Messages.

type timetag = int * int
type data = [
  1. | `Int32 of int
  2. | `Float of float
  3. | `String of string
  4. | `Blob of string
  5. | `Int64 of int
  6. | `Timetag of timetag
  7. | `Double of float
  8. | `Symbol of string
  9. | `Char of char
  10. | `Midi of string
  11. | `True
  12. | `False
  13. | `Nil
  14. | `Infinitum
]
val to_string : data -> string

String representation of a message (useful for debugging).