{-# LANGUAGE CPP, TypeFamilies, MultiParamTypeClasses, UndecidableInstances, ScopedTypeVariables #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
module Data.Extensible.Label where
import Data.Extensible.Class
import Data.Extensible.Field
import Data.Extensible.Product (hlookup)
import Data.Proxy
import GHC.OverloadedLabels
import GHC.Records
import Data.Extensible.Wrapper
instance k ~ l => IsLabel k (Proxy l) where
#if __GLASGOW_HASKELL__ >= 802
fromLabel = Proxy
#else
fromLabel _ = Proxy
#endif
訊 :: Proxy k -> FieldOptic k
訊 = itemAssoc
{-# DEPRECATED 訊 "Use xlb instead" #-}
xlb :: Proxy k -> FieldOptic k
xlb = itemAssoc
instance (Extensible f p e
, Lookup xs k v
, Labelling k p
, Wrapper h
, ExtensibleConstr e xs (Field h) (k ':> v)
, rep ~ Repr h v
, s ~ e xs (Field h)
, s ~ t
, rep ~ rep'
)
=> IsLabel k (p rep (f rep') -> p s (f t)) where
#if __GLASGOW_HASKELL__ >= 802
fromLabel = itemAssoc (Proxy :: Proxy k)
#else
fromLabel _ = itemAssoc (Proxy :: Proxy k)
#endif
instance (Lookup xs k v, Wrapper h, Repr h v ~ a) => HasField k (RecordOf h xs) a where
getField = unwrap . hlookup (association :: Membership xs (k >: v))