unfoldable 0.6.0.2 → 0.6.1
raw patch · 5 files changed
+5/−1 lines, 5 files
Files
- src/Data/Biunfoldable.hs +1/−0
- src/Data/Triunfoldable.hs +1/−0
- src/Data/Unfoldable.hs +1/−0
- src/Data/Unfolder.hs +1/−0
- unfoldable.cabal +1/−1
src/Data/Biunfoldable.hs view
@@ -10,6 +10,7 @@ -- -- Class of data structures with 2 type arguments that can be unfolded. -----------------------------------------------------------------------------+{-# LANGUAGE Safe #-} module Data.Biunfoldable (
src/Data/Triunfoldable.hs view
@@ -10,6 +10,7 @@ -- -- Class of data structures with 3 type arguments that can be unfolded. -----------------------------------------------------------------------------+{-# LANGUAGE Safe #-} module Data.Triunfoldable (
src/Data/Unfoldable.hs view
@@ -10,6 +10,7 @@ -- -- Class of data structures that can be unfolded. -----------------------------------------------------------------------------+{-# LANGUAGE Safe #-} module Data.Unfoldable (
src/Data/Unfolder.hs view
@@ -17,6 +17,7 @@ ScopedTypeVariables , GeneralizedNewtypeDeriving , RankNTypes+ , Trustworthy #-} module Data.Unfolder (
unfoldable.cabal view
@@ -1,5 +1,5 @@ Name: unfoldable-Version: 0.6.0.2+Version: 0.6.1 Synopsis: Class of data structures that can be unfolded. Description: Just as there's a Foldable class, there should also be an Unfoldable class. .