GithubHelp home page GithubHelp logo

kirstin-rhys / free-applicative Goto Github PK

View Code? Open in Web Editor NEW
2.0 2.0 0.0 160 KB

Just a quick implementation of Application for the classic Free algebra

License: GNU General Public License v3.0

Haskell 100.00%

free-applicative's Introduction

free-applicative

In two senses, there really isn't anything new here. The implementation of the Free Monad has been known for a long time. More recently, a half dozen implementations of the Free Applicative Functor have been published.

The construction of the data algebra for the Free Monad was chosen so it closely aligns to join, and the construction of the data algebras for the Free Applicative Functors were chosen so that they closely align to contextual application (<*> aka ⊛ aka ap).

But are these constructions for Free Applicative Functors necessary? Do they make an implementation of the Free Monad more efficient? Are they easier to understand?

Obviously, if we have a trivial implementation of the free monad, we could just define (<>) as ap === liftM2 id, but we should be able to define <> without reference to bind.

For some reason, I have not found any implementations or discussion of implementing <*> for the classic free monad. I suspect that that is because it's not easy to derive without computer assistance.

But, fortunately, with computer assistance, it's pretty straightforward to derive, and it's as efficient as the implentations for the data structures designed to mimic the <*> signature.

instance Functor φ ⇒ Applicative (Free φ) where
  pure = V
  (V x) ⊛ f = x <$> f
  (N g) ⊛ f = N $ (flip ($) <$> f ⊛) <$> g

For me at least, the proof of (N g) ⊛ f is not something I might easily figure out or stumble upon.

free-applicative's People

Contributors

krhys avatar kirstin-rhys avatar

Stargazers

Stan Serebryakov avatar Mark Farrell avatar

Watchers

 avatar James Cloos avatar

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.