1
1
mirror of https://github.com/github/semantic.git synced 2024-12-03 00:16:52 +03:00

Revert "Define a Conjunctive typeclass."

This reverts commit 4beaa5a9ae6bb16c4d2d896026f0dc267c1f772d.
This commit is contained in:
Rob Rix 2017-04-21 12:17:49 -04:00
parent a79d96d942
commit 41848c415d
2 changed files with 0 additions and 13 deletions

View File

@ -19,7 +19,6 @@ library
, Category
, Command
, Command.Parse
, Control.Conjunctive
, Data.Align.Generic
, Data.Functor.Both
, Data.Functor.Classes.Eq.Generic

View File

@ -1,12 +0,0 @@
module Control.Conjunctive where
import Prologue
infixl 4 <&>
class Alternative f => Conjunctive f where
(<&>) :: f (a -> b) -> f a -> f b
(<&) :: f a -> f b -> f a
(&>) :: f a -> f b -> f b