rebase 0.3.1 → 0.3.2
raw patch · 3 files changed
+17/−1 lines, 3 files
Files
- library/Rebase/Data/List.hs +14/−0
- library/Rebase/Prelude.hs +1/−0
- rebase.cabal +2/−1
+ library/Rebase/Data/List.hs view
@@ -0,0 +1,14 @@+module Rebase.Data.List+(+ module Data.List,+ List,+)+where++import Data.List++-- |+-- If you're not a fan of a magic or special cases,+-- you probably have already been looking for this alias.+type List =+ []
library/Rebase/Prelude.hs view
@@ -19,6 +19,7 @@ ------------------------- import Rebase.Data.Functor.Identity as Exports import Rebase.Data.Bifunctor as Exports+import Rebase.Data.List as Exports (List) -- profunctors -------------------------
rebase.cabal view
@@ -1,7 +1,7 @@ name: rebase version:- 0.3.1+ 0.3.2 synopsis: A more progressive alternative to the "base" package description:@@ -64,6 +64,7 @@ -- base: Rebase.Data.Functor.Identity Rebase.Data.Bifunctor+ Rebase.Data.List -- hashable: Rebase.Data.Hashable -- containers: