Make `consBag` infixr, and `snocBag` infixl
authorsimonpj@microsoft.com <unknown>
Thu, 29 Oct 2009 12:02:37 +0000 (12:02 +0000)
committersimonpj@microsoft.com <unknown>
Thu, 29 Oct 2009 12:02:37 +0000 (12:02 +0000)
compiler/utils/Bag.lhs

index b7e92a3..481dedf 100644 (file)
@@ -22,6 +22,9 @@ import Outputable
 import Util ( isSingleton )
 
 import Data.List ( partition )
+
+infixr 3 `consBag`
+infixl 3 `snocBag`
 \end{code}