{-# LANGUAGE CPP #-}
{-# LANGUAGE PatternSynonyms #-}
{-# LANGUAGE ViewPatterns #-}
module Optics.Empty.Core
( AsEmpty(..)
, pattern Empty
) where
import Control.Applicative (ZipList(..))
import Data.IntMap as IntMap
import Data.IntSet as IntSet
import Data.Map as Map
import Data.Maybe
import Data.Monoid
import Data.Set as Set
import qualified Data.Sequence as Seq
import Data.Maybe.Optics
import Optics.AffineTraversal
import Optics.Internal.Utils
import Optics.Iso
import Optics.Fold
import Optics.Optic
import Optics.Prism
import Optics.Review
#if !defined(mingw32_HOST_OS) && !defined(ghcjs_HOST_OS)
import GHC.Event
#endif
class AsEmpty a where
_Empty :: Prism' a ()
default _Empty :: (Monoid a, Eq a) => Prism' a ()
_Empty = only mempty
{-# INLINE _Empty #-}
pattern Empty :: forall a. AsEmpty a => a
pattern Empty <- (has _Empty -> True) where
Empty = review _Empty ()
instance AsEmpty Ordering
instance AsEmpty ()
instance AsEmpty Any
instance AsEmpty All
#if !defined(mingw32_HOST_OS) && !defined(ghcjs_HOST_OS)
instance AsEmpty Event
#endif
instance (Eq a, Num a) => AsEmpty (Product a)
instance (Eq a, Num a) => AsEmpty (Sum a)
instance AsEmpty (Maybe a) where
_Empty = _Nothing
{-# INLINE _Empty #-}
instance AsEmpty (Last a) where
_Empty = nearly (Last Nothing) (isNothing .# getLast)
{-# INLINE _Empty #-}
instance AsEmpty (First a) where
_Empty = nearly (First Nothing) (isNothing .# getFirst)
{-# INLINE _Empty #-}
instance AsEmpty a => AsEmpty (Dual a) where
_Empty = iso getDual Dual % _Empty
{-# INLINE _Empty #-}
instance (AsEmpty a, AsEmpty b) => AsEmpty (a, b) where
_Empty = prism'
(\() -> (review _Empty (), review _Empty ()))
(\(s, s') -> case matching _Empty s of
Right () -> case matching _Empty s' of
Right () -> Just ()
Left _ -> Nothing
Left _ -> Nothing)
{-# INLINE _Empty #-}
instance (AsEmpty a, AsEmpty b, AsEmpty c) => AsEmpty (a, b, c) where
_Empty = prism'
(\() -> (review _Empty (), review _Empty (), review _Empty ()))
(\(s, s', s'') -> case matching _Empty s of
Right () -> case matching _Empty s' of
Right () -> case matching _Empty s'' of
Right () -> Just ()
Left _ -> Nothing
Left _ -> Nothing
Left _ -> Nothing)
{-# INLINE _Empty #-}
instance AsEmpty [a] where
_Empty = nearly [] Prelude.null
{-# INLINE _Empty #-}
instance AsEmpty (ZipList a) where
_Empty = nearly (ZipList []) (Prelude.null . getZipList)
{-# INLINE _Empty #-}
instance AsEmpty (Map k a) where
_Empty = nearly Map.empty Map.null
{-# INLINE _Empty #-}
instance AsEmpty (IntMap a) where
_Empty = nearly IntMap.empty IntMap.null
{-# INLINE _Empty #-}
instance AsEmpty (Set a) where
_Empty = nearly Set.empty Set.null
{-# INLINE _Empty #-}
instance AsEmpty IntSet where
_Empty = nearly IntSet.empty IntSet.null
{-# INLINE _Empty #-}
instance AsEmpty (Seq.Seq a) where
_Empty = nearly Seq.empty Seq.null
{-# INLINE _Empty #-}