base-unicode-symbols 0.2.2.1 → 0.2.2.2
raw patch · 13 files changed
+46/−4 lines, 13 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Control/Applicative/Unicode.hs +2/−0
- Control/Arrow/Unicode.hs +5/−0
- Control/Category/Unicode.hs +3/−0
- Control/Monad/Unicode.hs +3/−0
- Data/Bool/Unicode.hs +3/−0
- Data/Eq/Unicode.hs +3/−0
- Data/Foldable/Unicode.hs +4/−0
- Data/Function/Unicode.hs +1/−0
- Data/List/Unicode.hs +9/−0
- Data/Monoid/Unicode.hs +2/−1
- Data/Ord/Unicode.hs +4/−0
- Prelude/Unicode.hs +4/−0
- base-unicode-symbols.cabal +3/−3
Control/Applicative/Unicode.hs view
@@ -36,6 +36,7 @@ -} (⊛) ∷ Applicative f ⇒ f (α → β) → f α → f β (⊛) = (<*>)+{-# INLINE (⊛) #-} {-| (∅) = 'empty'@@ -44,3 +45,4 @@ -} (∅) ∷ Alternative f ⇒ f α (∅) = empty+{-# INLINE (∅) #-}
Control/Arrow/Unicode.hs view
@@ -60,6 +60,7 @@ -} (⁂) ∷ Arrow (⇝) ⇒ (α ⇝ β) → (α' ⇝ β') → (α, α') ⇝ (β, β') (⁂) = (***)+{-# INLINE (⁂) #-} #endif {-|@@ -69,6 +70,7 @@ -} (⧻) ∷ ArrowChoice (⇝) ⇒ (α ⇝ β) → (α' ⇝ β') → (Either α α' ⇝ Either β β') (⧻) = (+++)+{-# INLINE (⧻) #-} {-| (⫴) = ('|||')@@ -77,6 +79,7 @@ -} (⫴) ∷ ArrowChoice (⇝) ⇒ (α ⇝ δ) → (β ⇝ δ) → (Either α β ⇝ δ) (⫴) = (|||)+{-# INLINE (⫴) #-} #if ! (MIN_VERSION_base(3,0,3)) {-|@@ -86,6 +89,7 @@ -} (⋙) ∷ Arrow (⇝) ⇒ (α ⇝ β) → (β ⇝ γ) → (α ⇝ γ) (⋙) = (>>>)+{-# INLINE (⋙) #-} {-| (⋘) = ('<<<')@@ -94,4 +98,5 @@ -} (⋘) ∷ Arrow (⇝) ⇒ (β ⇝ γ) → (α ⇝ β) → (α ⇝ γ) (⋘) = (<<<)+{-# INLINE (⋘) #-} #endif
Control/Category/Unicode.hs view
@@ -37,6 +37,7 @@ -} (∘) ∷ Category (⇝) ⇒ (β ⇝ γ) → (α ⇝ β) → (α ⇝ γ) (∘) = (.)+{-# INLINE (∘) #-} {-| (⋙) = ('>>>')@@ -45,6 +46,7 @@ -} (⋙) ∷ Category (⇝) ⇒ (α ⇝ β) → (β ⇝ γ) → (α ⇝ γ) (⋙) = (>>>)+{-# INLINE (⋙) #-} {-| (⋘) = ('<<<')@@ -53,3 +55,4 @@ -} (⋘) ∷ Category (⇝) ⇒ (β ⇝ γ) → (α ⇝ β) → (α ⇝ γ) (⋘) = (<<<)+{-# INLINE (⋘) #-}
Control/Monad/Unicode.hs view
@@ -38,6 +38,7 @@ -} (≫=) ∷ Monad m ⇒ m α → (α → m β) → m β (≫=) = (>>=)+{-# INLINE (≫=) #-} {-| (≫) = ('>>')@@ -46,6 +47,7 @@ -} (≫) ∷ Monad m ⇒ m α → m β → m β (≫) = (>>)+{-# INLINE (≫) #-} {-| (=≪) = ('=<<')@@ -54,3 +56,4 @@ -} (=≪) ∷ Monad m ⇒ (α → m β) → m α → m β (=≪) = (=<<)+{-# INLINE (=≪) #-}
Data/Bool/Unicode.hs view
@@ -37,6 +37,7 @@ -} (¬) ∷ Bool → Bool (¬) = not+{-# INLINE (¬) #-} {-| (∧) = ('&&')@@ -45,6 +46,7 @@ -} (∧) ∷ Bool → Bool → Bool (∧) = (&&)+{-# INLINE (∧) #-} {-| (∨) = ('||')@@ -53,3 +55,4 @@ -} (∨) ∷ Bool → Bool → Bool (∨) = (||)+{-# INLINE (∨) #-}
Data/Eq/Unicode.hs view
@@ -38,6 +38,7 @@ -} (≡) ∷ Eq α ⇒ α → α → Bool (≡) = (==)+{-# INLINE (≡) #-} {-| (≢) = ('/=')@@ -46,6 +47,7 @@ -} (≢) ∷ Eq α ⇒ α → α → Bool (≢) = (/=)+{-# INLINE (≢) #-} {-| (≠) = ('/=')@@ -54,3 +56,4 @@ -} (≠) ∷ Eq α ⇒ α → α → Bool (≠) = (/=)+{-# INLINE (≠) #-}
Data/Foldable/Unicode.hs view
@@ -42,6 +42,7 @@ -} (∈) ∷ (Foldable t, Eq α) ⇒ α → t α → Bool (∈) = elem+{-# INLINE (∈) #-} {-| (∋) = 'flip' (∈)@@ -50,6 +51,7 @@ -} (∋) ∷ (Foldable t, Eq α) ⇒ t α → α → Bool (∋) = flip (∈)+{-# INLINE (∋) #-} {-| (∉) = 'notElem'@@ -58,6 +60,7 @@ -} (∉) ∷ (Foldable t, Eq α) ⇒ α → t α → Bool (∉) = notElem+{-# INLINE (∉) #-} {-| (∌) = 'flip' (∉)@@ -66,3 +69,4 @@ -} (∌) ∷ (Foldable t, Eq α) ⇒ t α → α → Bool (∌) = flip (∉)+{-# INLINE (∌) #-}
Data/Function/Unicode.hs view
@@ -36,3 +36,4 @@ -} (∘) ∷ (β → γ) → (α → β) → (α → γ) (∘) = (.)+{-# INLINE (∘) #-}
Data/List/Unicode.hs view
@@ -51,6 +51,7 @@ -} (⧺) ∷ [α] → [α] → [α] (⧺) = (++)+{-# INLINE (⧺) #-} {-| (∈) = 'elem'@@ -59,6 +60,7 @@ -} (∈) ∷ Eq α ⇒ α → [α] → Bool (∈) = elem+{-# INLINE (∈) #-} {-| (∋) = 'flip' (∈)@@ -67,6 +69,7 @@ -} (∋) ∷ Eq α ⇒ [α] → α → Bool (∋) = flip (∈)+{-# INLINE (∋) #-} {-| (∉) = 'notElem'@@ -75,6 +78,7 @@ -} (∉) ∷ Eq α ⇒ α → [α] → Bool (∉) = notElem+{-# INLINE (∉) #-} {-| (∌) = 'flip' (∉)@@ -83,6 +87,7 @@ -} (∌) ∷ Eq α ⇒ [α] → α → Bool (∌) = flip (∉)+{-# INLINE (∌) #-} {-| (∪) = 'union'@@ -91,6 +96,7 @@ -} (∪) ∷ Eq α ⇒ [α] → [α] → [α] (∪) = union+{-# INLINE (∪) #-} {-| (∖) = ('\\')@@ -99,6 +105,7 @@ -} (∖) ∷ Eq α ⇒ [α] → [α] → [α] (∖) = (\\)+{-# INLINE (∖) #-} {-| Symmetric difference@@ -109,6 +116,7 @@ -} (∆) ∷ Eq α ⇒ [α] → [α] → [α] a ∆ b = (a ∖ b) ∪ (b ∖ a)+{-# INLINE (∆) #-} {-| (∩) = 'intersect'@@ -117,3 +125,4 @@ -} (∩) ∷ Eq α ⇒ [α] → [α] → [α] (∩) = intersect+{-# INLINE (∩) #-}
Data/Monoid/Unicode.hs view
@@ -36,6 +36,7 @@ -} (∅) ∷ Monoid α ⇒ α (∅) = mempty+{-# INLINE (∅) #-} {-| (⊕) = 'mappend'@@ -44,4 +45,4 @@ -} (⊕) ∷ Monoid α ⇒ α → α → α (⊕) = mappend-+{-# INLINE (⊕) #-}
Data/Ord/Unicode.hs view
@@ -40,6 +40,7 @@ -} (≤) ∷ Ord α ⇒ α → α → Bool (≤) = (<=)+{-# INLINE (≤) #-} {-| (≥) = ('>=')@@ -48,6 +49,7 @@ -} (≥) ∷ Ord α ⇒ α → α → Bool (≥) = (>=)+{-# INLINE (≥) #-} {-| (≮) = ('>=')@@ -56,6 +58,7 @@ -} (≮) ∷ Ord α ⇒ α → α → Bool (≮) = (>=)+{-# INLINE (≮) #-} {-| (≯) = ('<=')@@ -64,3 +67,4 @@ -} (≯) ∷ Ord α ⇒ α → α → Bool (≯) = (<=)+{-# INLINE (≯) #-}
Prelude/Unicode.hs view
@@ -58,6 +58,7 @@ -} π ∷ Floating α ⇒ α π = pi+{-# INLINE π #-} {-| (÷) = ('/')@@ -66,6 +67,7 @@ -} (÷) ∷ Fractional α ⇒ α → α → α (÷) = (/)+{-# INLINE (÷) #-} {-| (⋅) = ('*')@@ -74,6 +76,7 @@ -} (⋅) ∷ Num α ⇒ α → α → α (⋅) = (*)+{-# INLINE (⋅) #-} {-| (⊥) = 'undefined'@@ -82,6 +85,7 @@ -} (⊥) ∷ α (⊥) = undefined+{-# INLINE (⊥) #-} -------------------------------------------------------------------------------
base-unicode-symbols.cabal view
@@ -1,12 +1,12 @@ name: base-unicode-symbols-version: 0.2.2.1+version: 0.2.2.2 cabal-version: >=1.6 build-type: Simple stability: provisional-tested-with: GHC ==6.8.1, GHC ==6.10.1, GHC ==6.12.1, GHC ==6.12.3, GHC ==7.0.1, GHC ==7.0.3+tested-with: GHC ==6.8.1, GHC ==6.10.1, GHC ==6.12.1, GHC ==6.12.3, GHC ==7.0.1, GHC ==7.0.3, GHC ==7.2.1 author: Roel van Dijk <vandijk.roel@gmail.com> maintainer: Roel van Dijk <vandijk.roel@gmail.com>-copyright: 2009—2011 Roel van Dijk <vandijk.roel@gmail.com>+copyright: 2009–2011 Roel van Dijk <vandijk.roel@gmail.com> license: BSD3 license-file: LICENSE category: