hosc-0.16: Haskell Open Sound Control

Safe HaskellNone
LanguageHaskell98

Sound.OSC.Packet.Class

Description

Typeclass for encoding and decoding OSC packets.

Synopsis

Documentation

class OSC o where Source #

A type-class for values that can be translated to and from OSC Packets.

Minimal complete definition

toPacket, fromPacket

Methods

toPacket Source #

Arguments

:: o 
-> Packet

Translation to Packet.

fromPacket Source #

Arguments

:: Packet 
-> Maybe o

Translation from Packet.