Git Product home page Git Product logo

Comments (2)

HeinrichApfelmus avatar HeinrichApfelmus commented on September 26, 2024

Thanks for your feedback!

Fortunately, the semantics of reactive-banana are awesome and do everything you want already. :-) In particular,

First, it is not clear to me that this is guaranteed to work all the time because it isn't clear to me that the semantics of the network allow me to be sure that the value of b hasn't changed between the isJust and the fromJust --- say, in a concurrent setting.

it is guaranteed that the value of the behavior b "doesn't change in between". I'm using parentheses here because the notion of something "changing in between" is a actually concept that simply cannot occur in reactive-banana (since version 0.2, that is).

The semantics of reactive-banana are given by the [model implementation in the module Reactive.Banana.Model]. I have kept it very simple, it should be easy to understand. These semantics are law. Concurrency or not, if the efficient implementation does not satisfy them, I'm going to jail! :-O

In particular, this means that your implementation is indeed correct. Here a slightly tidied up version:

filterJust :: Event (Maybe a) -> Event a
filterJust = fmap fromJust . filterE isJust

e2a = filterJust    $ b <@ e1
e2b = filterNothing $ b <@ e1
    where filterNothing e = () <$ filterE isNothing e

That said, I agree that the filterJust function is a useful shortcut and should probably be added to the API.

from reactive-banana.

HeinrichApfelmus avatar HeinrichApfelmus commented on September 26, 2024

I have now added the filterJust function to the API. See issue #18.

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.