packages feed

non-empty-zipper 0.1.0.6 → 0.1.0.7

raw patch · 2 files changed

+7/−1 lines, 2 filesPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

API changes (from Hackage documentation)

+ Data.List.NonEmptyZipper: instance Data.Traversable.Traversable Data.List.NonEmptyZipper.NonEmptyZipper

Files

Data/List/NonEmptyZipper.hs view
@@ -212,6 +212,12 @@         foldr f (foldr f (foldr f i zs) [y]) xs  +-- | Its Traversable+instance Traversable NonEmptyZipper where+    traverse f (NonEmptyZipper xs y zs) =+        NonEmptyZipper <$> traverse f xs <*> f y <*> traverse f zs++ -- | Set the current element in the NonEmptyZipper. -- If the element does not appear in the collection, -- the result with be @Nothing@
non-empty-zipper.cabal view
@@ -1,5 +1,5 @@ name:                non-empty-zipper-version:             0.1.0.6+version:             0.1.0.7 synopsis:            The Zipper for NonEmpty description:         The Zipper for NonEmpty. Useful for things like tabs,                      button groups, and slideshows. Basically any case in which