Skip to content

ynprk/agile-git-practice

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

Interesting Talk

This is a talk on fused-effects given by Patrick Thomson at Strange Loop. To give a little bit of background:

fused-effects is an effect system for Haskell emphasizing expressivity and efficiency. The former is achieved by encoding algebraic, higher-order effects, while the latter is the result of fusing effect handlers all the way through computations” (qtd. from README).

Monads (a data structure used to express effects as data) don’t naturally compose, so most people use mtl (monad transformer library) to compose together different kinds of effects. But monad transformers produce a combined effect consisting of statically fixed layers of effects, making them less expressive. What’s interesting about fused-effects (and other effect system implementations, but I only know about this one) is that you get the speed of mtl without any of its expressive drawbacks. Instead of having a monad stack, you have a single monad whose type reflects possible computation values. I’m curious to see more successful use cases of libraries like fused-effects.

Comment from Seulmin Ryu

This is the first time I've ever heard of monads and mtl and I think it's fascinating how this data structure is very cheap. However, I'm curious to see what its drawbacks are for being a cheap data structure.

About

Git Practice for Agile Software Development class

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published