packages feed

base-unicode-symbols-0.1: Control/Category/Unicode.hs

{-# LANGUAGE UnicodeSyntax #-}

module Control.Category.Unicode
    ( (∘)
    ) where

import Prelude hiding ( (.) )
import Control.Category

{- |
(∘) = ('.')

U+2218, RING OPERATOR
-}
(∘) ∷ Category cat ⇒ cat b c → cat a b → cat a c
(∘) = (.)

infixr 9 ∘