hosc-0.15: Haskell Open Sound Control
Sound.OSC.Class
Description
Typeclass for encoding and decoding OSC packets.
Synopsis
class OSC o where Source
A type-class for values that can be translated to and from OSC Packets.
Packet
Methods
toPacket Source
Arguments
Translation to Packet.
fromPacket Source
Translation from Packet.
Instances
encodeOSC :: (Coding c, OSC o) => o -> c Source
encodePacket . toPacket.
encodePacket
.
toPacket
decodeOSC :: (Coding c, OSC o) => c -> Maybe o Source
fromPacket . decodePacket.
fromPacket
decodePacket