Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add instances for Reverse #242

Merged
merged 2 commits into from
Sep 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions mono-traversable/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ChangeLog for mono-traversable

## 1.0.20.0

* Added instances for [`Reverse`](https://hackage.haskell.org/package/transformers-0.6.1.1/docs/Data-Functor-Reverse.html#t:Reverse) data structure.

## 1.0.19.1

* Removed 'highly experimental' warning haddock comment from Data.Containers.
Expand Down
2 changes: 1 addition & 1 deletion mono-traversable/package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: mono-traversable
version: 1.0.19.0
version: 1.0.20.0
synopsis: Type classes for mapping, folding, and traversing monomorphic containers
description: Please see the README at <https://www.stackage.org/package/mono-traversable>
category: Data
Expand Down
18 changes: 17 additions & 1 deletion mono-traversable/src/Data/MonoTraversable.hs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import qualified Data.ByteString.Builder as B
import qualified Data.Foldable as F
import Data.Functor
import Data.Maybe (fromMaybe)
import Data.Monoid (Monoid (..), Any (..), All (..))
import Data.Monoid (Dual(..), Monoid (..), Any (..), All (..))
import Data.Proxy
import qualified Data.Text as T
import qualified Data.Text.Lazy as TL
Expand All @@ -56,6 +56,7 @@ import qualified Foreign.ForeignPtr.Unsafe as Unsafe
import Foreign.Ptr (plusPtr)
import Foreign.ForeignPtr (touchForeignPtr)
import Foreign.Storable (peek)
import Control.Applicative.Backwards (Backwards (..))
import Control.Arrow (Arrow)
import Data.Tree (Tree (..))
import Data.Sequence (Seq, ViewL (..), ViewR (..))
Expand All @@ -65,6 +66,7 @@ import Data.IntSet (IntSet)
import qualified Data.List as List
import Data.List.NonEmpty (NonEmpty)
import Data.Functor.Identity (Identity)
import Data.Functor.Reverse (Reverse (..))
import Data.Map (Map)
import qualified Data.Map.Strict as Map
import Data.HashMap.Strict (HashMap)
Expand Down Expand Up @@ -168,6 +170,7 @@ type instance Element (Par1 a) = a
type instance Element (U1 a) = a
type instance Element (V1 a) = a
type instance Element (Proxy a) = a
type instance Element (Reverse f a) = Element (f a)

-- | Monomorphic containers that can be mapped over.
class MonoFunctor mono where
Expand Down Expand Up @@ -255,6 +258,9 @@ instance U.Unbox a => MonoFunctor (U.Vector a) where
instance VS.Storable a => MonoFunctor (VS.Vector a) where
omap = VS.map
{-# INLINE omap #-}
-- | @since 1.0.20.0
instance MonoFunctor (f a) => MonoFunctor (Reverse f a) where
omap f (Reverse t) = Reverse (omap f t)

-- | @'replaceElem' old new@ replaces all @old@ elements with @new@.
--
Expand Down Expand Up @@ -823,6 +829,13 @@ instance MonoFoldable (U1 a)
instance MonoFoldable (V1 a)
-- | @since 1.0.11.0
instance MonoFoldable (Proxy a)
-- | @since 1.0.20.0
instance MonoFoldable (f a) => MonoFoldable (Reverse f a) where
ofoldMap f (Reverse t) = getDual (ofoldMap (Dual . f) t)
ofoldr f z (Reverse t) = ofoldl' (flip f) z t
ofoldl' f z (Reverse t) = ofoldr (flip f) z t
ofoldr1Ex f (Reverse t) = ofoldl1Ex' (flip f) t
ofoldl1Ex' f (Reverse t) = ofoldr1Ex (flip f) t

-- | Safe version of 'headEx'.
--
Expand Down Expand Up @@ -1086,6 +1099,9 @@ instance MonoTraversable (U1 a)
instance MonoTraversable (V1 a)
-- | @since 1.0.11.0
instance MonoTraversable (Proxy a)
-- | @since 1.0.20.0
instance (MonoTraversable (f a)) => MonoTraversable (Reverse f a) where
otraverse f (Reverse t) = (fmap Reverse . forwards) (otraverse (Backwards . f) t)

-- | 'ofor' is 'otraverse' with its arguments flipped.
ofor :: (MonoTraversable mono, Applicative f) => mono -> (Element mono -> f (Element mono)) -> f mono
Expand Down