<div dir="ltr">The mono-traversable package provides headMay[1] which works for Seq.<br><br><div>[1] <a href="http://www.stackage.org/haddock/nightly-2015-02-25/mono-traversable-0.9.0.1/Data-MonoTraversable.html#v:headMay">http://www.stackage.org/haddock/nightly-2015-02-25/mono-traversable-0.9.0.1/Data-MonoTraversable.html#v:headMay</a></div></div><br><div class="gmail_quote">On Thu Feb 26 2015 at 4:18:31 PM Petr Pudlák <<a href="mailto:petr.mvd@gmail.com">petr.mvd@gmail.com</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi,<div><br></div><div>today I was a bit surprised that apparently there is no easy way how to safely get the head element of `Seq` in a point-free way. Of course there is `viewl`, but it seems the data type has no folding function (something like 'foldViewL :: b -> (a -> Seq a -> b) -> b`.</div><div><br></div><div>Is there any existing function like `Seq a -> Maybe a` to safely retrieve the head (or last) element?</div><div><br></div><div>If not, I'd suggest to add</div><div><br></div><div>    headMaybe :: (Foldable t) => t a -> Maybe a</div><div>    headMaybe = getFirst . foldMap (First . Just)</div><div><br></div><div>and similarly lastMaybe to Data.Foldable.</div><div><br></div><div>  Thanks,</div><div>  Petr</div></div>
______________________________<u></u>_________________<br>
Haskell-Cafe mailing list<br>
<a href="mailto:Haskell-Cafe@haskell.org" target="_blank">Haskell-Cafe@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe" target="_blank">http://mail.haskell.org/cgi-<u></u>bin/mailman/listinfo/haskell-<u></u>cafe</a><br>
</blockquote></div>