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