Git Product home page Git Product logo

Comments (3)

HeinrichApfelmus avatar HeinrichApfelmus commented on September 27, 2024

As mentioned in my response to issue #17, everything is sun and rainbows concerning the semantics of reactive-banana. :-)

The main point is that rightEvent happens simultaneously with initialEvent, there is no time in between where the behavior could change. At least, that's the illusion that reactive-banana will enforce.

The obvious implementations are all correct

(leftEvent, rightEvent) = pair $ behavior <@> initialEvent

pair :: Event (Either a b) -> (Event a, Event b)
pair e = (filterLeft e, filterRight e)
    where
    filterLeft  = fmap fromLeft  . filteE isLeft 
    filterRight = fmap fromRight . filteE isRight

Note that since e is shared in the second function, the value of type Either a b will be computed only once. The only thing that happens twice is the test whether it's a Left or Right constructor. Not optimal but I think it's ok.

I do agree that partial functions like fromLeft are somewhat unsightly. Fortunately, they can all be removed by using the filterJust function mentioned in issue #17.

filterLeft = filterJust . fmap matchLeft
    where
    matchLeft (Left x) = Just x
    matchLeft _        = Nothing

That's another reason to add filterJust to the API.

from reactive-banana.

gcross avatar gcross commented on September 27, 2024

Nifty! Thank you very much for the prompt response. :-)

P.S.: You can close the issue anytime you want, or leave it open as a reminder to add some of the functions we discussed to the API.

from reactive-banana.

HeinrichApfelmus avatar HeinrichApfelmus commented on September 27, 2024

Ok. I have now added the filterJust function to the API.

from reactive-banana.

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.