{-# LANGUAGE NoImplicitPrelude, UnicodeSyntax #-} {-| Module : Control.Arrow.Unicode Copyright : (c) 2010 Roel van Dijk License : BSD3 (see the file LICENSE) Maintainer : Roel van Dijk -} module Control.Arrow.Unicode ( (⋙), (⋘), (⧻), (⫴) ) where ------------------------------------------------------------------------------- -- Imports ------------------------------------------------------------------------------- -- from base: import Control.Arrow ( ArrowChoice, (+++), (|||) ) import Data.Either ( Either ) -- from base-unicode-symbols import Control.Category.Unicode ( (⋙), (⋘) ) ------------------------------------------------------------------------------- -- Fixities ------------------------------------------------------------------------------- infixr 2 ⧻ infixr 2 ⫴ ------------------------------------------------------------------------------- -- Symbols ------------------------------------------------------------------------------- {-| (⧻) = ('+++') U+29FB, TRIPLE PLUS -} (⧻) ∷ ArrowChoice α ⇒ α β γ → α β' γ' → α (Either β β') (Either γ γ') (⧻) = (+++) {-| (⫴) = ('|||') U+2AF4, TRIPLE VERTICAL BAR BINARY RELATION -} (⫴) ∷ ArrowChoice α ⇒ α β δ → α γ δ → α (Either β γ) δ (⫴) = (|||)