[commit: packages/containers] develop-0.6-questionable: Fixed syntax of fixity declarations. (2bf686d)
git at git.haskell.org
git at git.haskell.org
Fri Jan 23 22:41:26 UTC 2015
Repository : ssh://git@git.haskell.org/containers
On branch : develop-0.6-questionable
Link : http://git.haskell.org/packages/containers.git/commitdiff/2bf686d3dd0706eef416590100f8d1ebaa3eb80b
>---------------------------------------------------------------
commit 2bf686d3dd0706eef416590100f8d1ebaa3eb80b
Author: Peter Selinger <selinger at mathstat.dal.ca>
Date: Fri Jul 4 10:47:35 2014 -0300
Fixed syntax of fixity declarations.
>---------------------------------------------------------------
2bf686d3dd0706eef416590100f8d1ebaa3eb80b
Data/IntMap/Base.hs | 8 ++++----
Data/IntSet/Base.hs | 8 ++++----
Data/Map/Base.hs | 8 ++++----
Data/Set/Base.hs | 8 ++++----
4 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/Data/IntMap/Base.hs b/Data/IntMap/Base.hs
index 2a912d9..8afb60c 100644
--- a/Data/IntMap/Base.hs
+++ b/Data/IntMap/Base.hs
@@ -451,7 +451,7 @@ member k = k `seq` go
go (Tip kx _) = k == kx
go Nil = False
-infix 4 member
+infix 4 `member`
-- | /O(min(n,W))/. Is the key not a member of the map?
--
@@ -461,7 +461,7 @@ infix 4 member
notMember :: Key -> IntMap a -> Bool
notMember k m = not $ member k m
-infix 4 notMember
+infix 4 `notMember`
-- | /O(min(n,W))/. Lookup the value at a key in the map. See also 'Data.Map.lookup'.
@@ -878,7 +878,7 @@ union :: IntMap a -> IntMap a -> IntMap a
union m1 m2
= mergeWithKey' Bin const id id m1 m2
-infixl 5 union
+infixl 5 `union`
-- | /O(n+m)/. The union with a combining function.
--
@@ -943,7 +943,7 @@ intersection :: IntMap a -> IntMap b -> IntMap a
intersection m1 m2
= mergeWithKey' bin const (const Nil) (const Nil) m1 m2
-infixl 5 intersection
+infixl 5 `intersection`
-- | /O(n+m)/. The intersection with a combining function.
--
diff --git a/Data/IntSet/Base.hs b/Data/IntSet/Base.hs
index f2dfb90..bd78790 100644
--- a/Data/IntSet/Base.hs
+++ b/Data/IntSet/Base.hs
@@ -321,13 +321,13 @@ member x = x `seq` go
go (Tip y bm) = prefixOf x == y && bitmapOf x .&. bm /= 0
go Nil = False
-infix 4 member
+infix 4 `member`
-- | /O(min(n,W))/. Is the element not in the set?
notMember :: Key -> IntSet -> Bool
notMember k = not . member k
-infix 4 notMember
+infix 4 `notMember`
-- | /O(log n)/. Find largest element smaller than the given one.
--
@@ -516,7 +516,7 @@ union t@(Bin _ _ _ _) Nil = t
union (Tip kx bm) t = insertBM kx bm t
union Nil t = t
-infixl 5 union
+infixl 5 `union`
{--------------------------------------------------------------------
Difference
@@ -591,7 +591,7 @@ intersection (Tip kx1 bm1) t2 = intersectBM t2
intersection Nil _ = Nil
-infixl 5 intersection
+infixl 5 `intersection`
{--------------------------------------------------------------------
Subset
diff --git a/Data/Map/Base.hs b/Data/Map/Base.hs
index 92ff096..ae291c7 100644
--- a/Data/Map/Base.hs
+++ b/Data/Map/Base.hs
@@ -466,7 +466,7 @@ member = go
{-# INLINE member #-}
#endif
-infix 4 member
+infix 4 `member`
-- | /O(log n)/. Is the key not a member of the map? See also 'member'.
--
@@ -481,7 +481,7 @@ notMember k m = not $ member k m
{-# INLINE notMember #-}
#endif
-infix 4 notMember
+infix 4 `notMember`
-- | /O(log n)/. Find the value at a key.
-- Calls 'error' when the element can not be found.
@@ -1245,7 +1245,7 @@ union t1 t2 = hedgeUnion NothingS NothingS t1 t2
{-# INLINABLE union #-}
#endif
-infixl 5 union
+infixl 5 `union`
-- left-biased hedge union
hedgeUnion :: Ord a => MaybeS a -> MaybeS a -> Map a b -> Map a b -> Map a b
@@ -1367,7 +1367,7 @@ intersection t1 t2 = hedgeInt NothingS NothingS t1 t2
{-# INLINABLE intersection #-}
#endif
-infixl 5 intersection
+infixl 5 `intersection`
hedgeInt :: Ord k => MaybeS k -> MaybeS k -> Map k a -> Map k b -> Map k a
hedgeInt _ _ _ Tip = Tip
diff --git a/Data/Set/Base.hs b/Data/Set/Base.hs
index 0c4f62b..732e973 100644
--- a/Data/Set/Base.hs
+++ b/Data/Set/Base.hs
@@ -356,7 +356,7 @@ member = go
{-# INLINE member #-}
#endif
-infix 4 member
+infix 4 `member`
-- | /O(log n)/. Is the element not in the set?
notMember :: Ord a => a -> Set a -> Bool
@@ -367,7 +367,7 @@ notMember a t = not $ member a t
{-# INLINE notMember #-}
#endif
-infix 4 notMember
+infix 4 `notMember`
-- | /O(log n)/. Find largest element smaller than the given one.
--
@@ -620,7 +620,7 @@ union t1 t2 = hedgeUnion NothingS NothingS t1 t2
{-# INLINABLE union #-}
#endif
-infixl 5 union
+infixl 5 `union`
hedgeUnion :: Ord a => MaybeS a -> MaybeS a -> Set a -> Set a -> Set a
hedgeUnion _ _ t1 Tip = t1
@@ -680,7 +680,7 @@ intersection t1 t2 = hedgeInt NothingS NothingS t1 t2
{-# INLINABLE intersection #-}
#endif
-infixl 5 intersection
+infixl 5 `intersection`
hedgeInt :: Ord a => MaybeS a -> MaybeS a -> Set a -> Set a -> Set a
hedgeInt _ _ _ Tip = Tip
More information about the ghc-commits
mailing list