Coder Social home page Coder Social logo

Comments (2)

noelwelsh avatar noelwelsh commented on July 23, 2024

Hmmm ... I don't think flatMap can be correctly implemented for Picture.

Consider

Picture.circle(10).flatMap(_ => Picture.square(10))

What should this draw? The problem is that there is no natural way to combine the circle and the square. Often it isn't desirable to combine them. Something like

Picture.circle(10).width.flatMap(w => Picture.square(w * 2))

is a typical usage of width and flatMap, where flatMap is only called so the width can be used to create a different element.

So I think the solution is:

  • Picture has a Functor instance but no Monad
  • Picture has a method andThen that is like flatMap but doesn't obey the monad laws (in particular, it doesn't obey the right identity.)

from doodle.

zainab-ali avatar zainab-ali commented on July 23, 2024

Apologies for the delay - I think that's a good approach.

We do still need to define the behaviour of map, andThen and width with respect to drawing.

What do you think about:

Picture.circle(10).width.andThen(w => Picture.square(w * 2)) // Draws the square, but not the circle.
Picture.circle(10).width // Currently draws the circle
Picture.circle(10).map(identity) // === Picture.circle(10) so should draw the circle

from doodle.

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.