<div dir="ltr"><div>We found this quite useful, but we are not 100% about the name and documentation.</div><div><br></div><div>-- | Try—in the 'Alternative' sense—to return all the values in a 'Foldable'</div><div>-- container.</div><div>--</div><div>-- @</div><div>-- foldAlt ≡ 'listToMaybe' :: [a] -> 'Maybe' a</div><div>-- foldAlt ≡ 'maybeToList' :: 'Maybe' a -> [a]</div><div>-- foldAlt ≡ 'MaybeT' . 'return' :: ('Monad' m) => 'Maybe' a -> 'MaybeT' m a</div><div>-- foldAlt ≡ 'Pipes.ListT' . 'Pipes.each' :: ('Monad' m) => [a] -> 'Pipes.ListT' m a</div><div>-- foldAlt ≡ id :: 'Maybe' a -> 'Maybe' a</div><div>-- @</div><div>foldAlt :: (Foldable t, Alternative f) => t a -> f a</div><div>foldAlt = getAlt . foldMap (Alt . pure)</div><div>{-# INLINE foldAlt #-}</div><div><br></div><div>I propose adding this to either `Data.Foldable` or `Control.Applicative`. Any thoughts?</div></div>