packages feed

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 view
@@ -36,6 +36,7 @@ -} (⊛) ∷ Applicative f ⇒ f (α → β) → f α → f β (⊛) = (<*>)+{-# INLINE (⊛) #-}  {-| (&#x2205;) = '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 (⧻) #-}  {-| (&#x2AF4;) = ('|||')@@ -77,6 +79,7 @@ -} (⫴) ∷ ArrowChoice (⇝) ⇒ (α ⇝ δ) → (β ⇝ δ) → (Either α β ⇝ δ) (⫴) = (|||)+{-# INLINE (⫴) #-}  #if ! (MIN_VERSION_base(3,0,3)) {-|@@ -86,6 +89,7 @@ -} (⋙) ∷ Arrow (⇝) ⇒ (α ⇝ β) → (β ⇝ γ) → (α ⇝ γ) (⋙) = (>>>)+{-# INLINE (⋙) #-}  {-| (&#x22D8;) = ('<<<')@@ -94,4 +98,5 @@ -} (⋘) ∷ Arrow (⇝) ⇒ (β ⇝ γ) → (α ⇝ β) → (α ⇝ γ) (⋘) = (<<<)+{-# INLINE (⋘) #-} #endif
Control/Category/Unicode.hs view
@@ -37,6 +37,7 @@ -} (∘) ∷ Category (⇝) ⇒ (β ⇝ γ) → (α ⇝ β) → (α ⇝ γ) (∘) = (.)+{-# INLINE (∘) #-}  {-| (&#x22D9;) = ('>>>')@@ -45,6 +46,7 @@ -} (⋙) ∷ Category (⇝) ⇒ (α ⇝ β) → (β ⇝ γ) → (α ⇝ γ) (⋙) = (>>>)+{-# INLINE (⋙) #-}  {-| (&#x22D8;) = ('<<<')@@ -53,3 +55,4 @@ -} (⋘) ∷ Category (⇝) ⇒ (β ⇝ γ) → (α ⇝ β) → (α ⇝ γ) (⋘) = (<<<)+{-# INLINE (⋘) #-}
Control/Monad/Unicode.hs view
@@ -38,6 +38,7 @@ -} (≫=) ∷ Monad m ⇒ m α → (α → m β) → m β (≫=) = (>>=)+{-# INLINE (≫=) #-}  {-| (&#x226B;) = ('>>')@@ -46,6 +47,7 @@ -} (≫) ∷ Monad m ⇒ m α → m β → m β (≫) = (>>)+{-# INLINE (≫) #-}  {-| (=&#x226A;) = ('=<<')@@ -54,3 +56,4 @@ -} (=≪) ∷ Monad m ⇒ (α → m β) → m α → m β (=≪) = (=<<)+{-# INLINE (=≪) #-}
Data/Bool/Unicode.hs view
@@ -37,6 +37,7 @@ -} (¬) ∷ Bool → Bool (¬) = not+{-# INLINE (¬) #-}  {-| (&#x2227;) = ('&&')@@ -45,6 +46,7 @@ -} (∧) ∷ Bool → Bool → Bool (∧) = (&&)+{-# INLINE (∧) #-}  {-| (&#x2228;) = ('||')@@ -53,3 +55,4 @@ -} (∨) ∷ Bool → Bool → Bool (∨) = (||)+{-# INLINE (∨) #-}
Data/Eq/Unicode.hs view
@@ -38,6 +38,7 @@ -} (≡) ∷ Eq α ⇒ α → α → Bool (≡) = (==)+{-# INLINE (≡) #-}  {-| (&#x2262;) = ('/=')@@ -46,6 +47,7 @@ -} (≢) ∷ Eq α ⇒ α → α → Bool (≢) = (/=)+{-# INLINE (≢) #-}  {-| (&#x2260;) = ('/=')@@ -54,3 +56,4 @@ -} (≠) ∷ Eq α ⇒ α → α → Bool (≠) = (/=)+{-# INLINE (≠) #-}
Data/Foldable/Unicode.hs view
@@ -42,6 +42,7 @@ -} (∈) ∷ (Foldable t, Eq α) ⇒ α → t α → Bool (∈) = elem+{-# INLINE (∈) #-}  {-| (&#x220B;) = 'flip' (&#x2208;)@@ -50,6 +51,7 @@ -} (∋) ∷ (Foldable t, Eq α) ⇒ t α → α → Bool (∋) = flip (∈)+{-# INLINE (∋) #-}  {-| (&#x2209;) = 'notElem'@@ -58,6 +60,7 @@ -} (∉) ∷ (Foldable t, Eq α) ⇒ α → t α → Bool (∉) = notElem+{-# INLINE (∉) #-}  {-| (&#x220C;) = 'flip' (&#x2209;)@@ -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 (⧺) #-}  {-| (&#x2208;) = 'elem'@@ -59,6 +60,7 @@ -} (∈) ∷ Eq α ⇒ α → [α] → Bool (∈) = elem+{-# INLINE (∈) #-}  {-| (&#x220B;) = 'flip' (&#x2208;)@@ -67,6 +69,7 @@ -} (∋) ∷ Eq α ⇒ [α] → α → Bool (∋) = flip (∈)+{-# INLINE (∋) #-}  {-| (&#x2209;) = 'notElem'@@ -75,6 +78,7 @@ -} (∉) ∷ Eq α ⇒ α → [α] → Bool (∉) = notElem+{-# INLINE (∉) #-}  {-| (&#x220C;) = 'flip' (&#x2209;)@@ -83,6 +87,7 @@ -} (∌) ∷ Eq α ⇒ [α] → α → Bool (∌) = flip (∉)+{-# INLINE (∌) #-}  {-| (&#x222A;) = 'union'@@ -91,6 +96,7 @@ -} (∪) ∷ Eq α ⇒ [α] → [α] → [α] (∪) = union+{-# INLINE (∪) #-}  {-| (&#x2216;) = ('\\')@@ -99,6 +105,7 @@ -} (∖) ∷ Eq α ⇒ [α] → [α] → [α] (∖) = (\\)+{-# INLINE (∖) #-}  {-| Symmetric difference@@ -109,6 +116,7 @@ -} (∆) ∷ Eq α ⇒ [α] → [α] → [α] a ∆ b = (a ∖ b) ∪ (b ∖ a)+{-# INLINE (∆) #-}  {-| (&#x2229;) = 'intersect'@@ -117,3 +125,4 @@ -} (∩) ∷ Eq α ⇒ [α] → [α] → [α] (∩) = intersect+{-# INLINE (∩) #-}
Data/Monoid/Unicode.hs view
@@ -36,6 +36,7 @@ -} (∅) ∷ Monoid α ⇒ α (∅) = mempty+{-# INLINE (∅) #-}  {-| (&#x2295;) = 'mappend'@@ -44,4 +45,4 @@ -} (⊕) ∷ Monoid α ⇒ α → α → α (⊕) = mappend-+{-# INLINE (⊕) #-}
Data/Ord/Unicode.hs view
@@ -40,6 +40,7 @@ -} (≤) ∷ Ord α ⇒ α → α → Bool (≤) = (<=)+{-# INLINE (≤) #-}  {-| (&#x2265;) = ('>=')@@ -48,6 +49,7 @@ -} (≥) ∷ Ord α ⇒ α → α → Bool (≥) = (>=)+{-# INLINE (≥) #-}  {-| (&#x226E;) = ('>=')@@ -56,6 +58,7 @@ -} (≮) ∷ Ord α ⇒ α → α → Bool (≮) = (>=)+{-# INLINE (≮) #-}  {-| (&#x226F;) = ('<=')@@ -64,3 +67,4 @@ -} (≯) ∷ Ord α ⇒ α → α → Bool (≯) = (<=)+{-# INLINE (≯) #-}
Prelude/Unicode.hs view
@@ -58,6 +58,7 @@ -} π ∷ Floating α ⇒ α π = pi+{-# INLINE π #-}  {-| (&#x00F7;) = ('/')@@ -66,6 +67,7 @@ -} (÷) ∷ Fractional α ⇒ α → α → α (÷) = (/)+{-# INLINE (÷) #-}  {-| (&#x22C5;) = ('*')@@ -74,6 +76,7 @@ -} (⋅) ∷ Num α ⇒ α → α → α (⋅) = (*)+{-# INLINE (⋅) #-}  {-| (&#x22A5;) = '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: