gimboland
gimboland

Reputation: 2286

Does this simple Haskell function already have a well-known name?

I've just written this function which simply takes a pair whose second value is in some monad, and "pulls the monad out" to cover the whole pair.

unSndM :: Monad m => (a, m c) -> m (a, c)
unSndM (x, y) = do y' <- y
                   return (x, y')

Is there a nicer and/or shorter or point-free or even standard way to express this?

I've got as far as the following, with -XTupleSections turned on...

unSndM' :: Monad m => (a, m c) -> m (a, c)
unSndM' (x, y) = y >>= return . (x,)

Thanks!

Upvotes: 8

Views: 1335

Answers (4)

pigworker
pigworker

Reputation: 43383

If the Traversable and Foldable instances for (,) x) were in the library (and I suppose I must take some blame for their absence)...

instance Traversable ((,) x) where
  traverse f (x, y) = (,) x <$> f y

instance Foldable ((,) x) where
  foldMap = foldMapDefault

...then this (sometimes called 'strength') would be a specialisation of Data.Traversable.sequence.

sequence :: (Traversable t, Monad m) => t (m a) -> m (t a)

so

sequence :: (Monad m) => ((,) x) (m a) -> m (((,) x) a)

i.e.

sequence :: (Monad m) => (x, m a) -> m (x, a)

In fact, sequence doesn't really use the full power of Monad: Applicative will do. Moreover, in this case, pairing-with-x is linear, so the traverse does only <$> rather than other random combinations of pure and <*>, and (as has been pointed out elsewhere) you only need m to have functorial structure.

Upvotes: 13

Travis Brown
Travis Brown

Reputation: 139028

One minor point: it's possible to write this using only fmap (no >>=), so you really only need a Functor instance:

unSndM :: (Functor f) => (a, f c) -> f (a, c)
unSndM (x, y) = fmap ((,) x) y

This version is a bit more general. To answer your question about a pointfree version, we can just ask pointfree:

travis@sidmouth% pointfree "unSndM (x, y) = fmap ((,) x) y"
unSndM = uncurry (fmap . (,))

So, yes, an even shorter version is possible, but I personally find uncurry a bit hard to read and avoid it in most cases.

If I were writing this function in my own code, I'd probably use <$> from Control.Applicative, which does shave off one character:

unSndM :: (Functor f) => (a, f c) -> f (a, c)
unSndM (x, y) = ((,) x) <$> y

<$> is just a synonym for fmap, and I like that it makes the fact that this is a kind of function application a little clearer.

Upvotes: 12

mokus
mokus

Reputation: 3500

I haven't seen it written in any Haskell library (though it's probably in category-extras), but it is generally known as the "tensorial strength" of a monad. See:

http://en.wikipedia.org/wiki/Strong_monad

http://comonad.com/reader/2008/deriving-strength-from-laziness/

Upvotes: 8

Thomas M. DuBuisson
Thomas M. DuBuisson

Reputation: 64740

Hoogle is your friend. If one of the standard libraries had it then a hoogle for "Monad m => (a, m b) -> m (a,b)" would find it. Note the function could still be in a hackage package, but it often isn't worth an extra build-dep just for small functions like this.

Upvotes: 3

Related Questions