blucontrol-0.4.1.0: src/Blucontrol/CompatibleValues.hs
module Blucontrol.CompatibleValues (
CompatibleValues (..)
) where
class CompatibleValues a b where
convertValue :: a -> b
instance CompatibleValues a a where
convertValue = id
module Blucontrol.CompatibleValues (
CompatibleValues (..)
) where
class CompatibleValues a b where
convertValue :: a -> b
instance CompatibleValues a a where
convertValue = id