{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE UnicodeSyntax #-}
module Control.Applicative.Unicode ( (⊛), (∅) ) where
import Control.Applicative ( Applicative, Alternative
, (<*>), empty
)
-------------------------------------------------------------------------------
-- Fixities
-------------------------------------------------------------------------------
infixl 4 ⊛
-------------------------------------------------------------------------------
-- Symbols
-------------------------------------------------------------------------------
{-|
(⊛) = '<*>'
U+229B, CIRCLED ASTERISK OPERATOR
-}
(⊛) ∷ Applicative f ⇒ f (α → β) → f α → f β
(⊛) = (<*>)
{-|
(∅) = 'empty'
U+2205, EMPTY SET
-}
(∅) ∷ Alternative f ⇒ f α
(∅) = empty