lens-family-core-0.1.0: src/Lens/Family/Setting.hs
module Lens.Family.Setting where
newtype Setting a = Setting { unSetting :: a }
instance Functor Setting where
fmap f (Setting a) = Setting (f a)
module Lens.Family.Setting where
newtype Setting a = Setting { unSetting :: a }
instance Functor Setting where
fmap f (Setting a) = Setting (f a)