Lo.Message
Messages.
type data = [
| `Int32 of int |
| `Float of float |
| `String of string |
| `Blob of string |
| `Int64 of int |
| `Timetag of timetag |
| `Double of float |
| `Symbol of string |
| `Char of char |
| `Midi of string |
| `True |
| `False |
| `Nil |
| `Infinitum |
]
val to_string : data -> string
String representation of a message (useful for debugging).