Giter Club home page Giter Club logo

Comments (5)

mitchellwrosen avatar mitchellwrosen commented on July 30, 2024 1

FYI: scanl1, scanr1 aren't partial

from rio.

snoyberg avatar snoyberg commented on July 30, 2024

In principle: I'm OK with this approach. I'm not convinced that safe will be the right prefix in all cases. For example: maximum would probably be better replaced by maximumMay or maximumMaybe to match existing naming conventions IMO.

from rio.

roman avatar roman commented on July 30, 2024

That is fair, honestly, my intent was not to strongly advocate names, may I create a pull request and we revisit the names as we go?

from rio.

snoyberg avatar snoyberg commented on July 30, 2024

Implemented in #96

from rio.

akhra avatar akhra commented on July 30, 2024

Late entry, but perhaps relevant... yesterday I had to switch some lists over to vectors so I could use statistics operations on them. I had been using some of the (list-specific) *Def functions from safe, and needed to replicate those; and some of the statistics operations I wanted were partial on empty vectors, too, which needed fixing. I wound up writing this:

defaulting :: Foldable f => b -> (f a -> b) -> f a -> b
defaulting d f xs
  | null xs   = d
  | otherwise = f xs

So now I have e.g. defaulting 0 Vector.maximum. The *Maybe pattern is a trivial special case:

mayhap :: Foldable f => (f a -> b) -> f a -> Maybe b
mayhap f = defaulting Nothing (Just . f)

Are there any particular downsides to this technique? It seems far more elegant than a slew of specialized, type-specific functions.

Edit: https://hackage.haskell.org/package/safe-foldable

from rio.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.