Giter VIP home page Giter VIP logo

Comments (3)

pivovarit avatar pivovarit commented on June 5, 2024

Well, this library was clearly designed for something else. It was designed for seamless blending checked lambdas with java.util.function standard functional types and you just want to rethrow your checked exception as RuntimeException, but I will look more into this tomorrow. Thanks :)

from throwing-function.

Tarrasch avatar Tarrasch commented on June 5, 2024

Cool. I saw this package as a somewhat academic solution to the checked-exception handling hell that's omnipresent in java. But maybe there's a deeper meaning I haven't seen yet. :)

Afaik, any solution to checked-exception handling has to wrap expressions like readFromFile() into unevaluated expressions () -> readFromFile() (nothing special to Java 8, except the convenient syntax).

Now the examples in your readme seem to specialize to non-anonymous functions like URI::new. But from a functional programmers mindset they are equivalent to x -> URI.new(x).

from throwing-function.

pivovarit avatar pivovarit commented on June 5, 2024

This is just for dealing with Java8 exceptions in lambdas and works only with version of 8 and beyond.
If a checked exception appears in your lambdas, it ruins everything because java.util.function functional types do not have any throws clause. This lib could be useful in your case, but it was designed for something else.

btw, method references in Java8 are just syntactic sugar over regular anonymous functions like this x -> URI.new(x)

Consider this part of JDK8 documentation:

You use lambda expressions to create anonymous methods. Sometimes, however, a lambda expression does nothing but call an existing method. In those cases, it's often clearer to refer to the existing method by name. Method references enable you to do this; they are compact, easy-to-read lambda expressions for methods that already have a name.

from throwing-function.

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.