Y
Hacker News
new
|
ask
|
show
|
jobs
by
judk
4331 days ago
I like how the misconception is introduced by the standard library itself misnaming its own method `sequence`.
2 comments
sfvisser
4331 days ago
It's not entirely right to call this a misconception. The monadic bind
is
inherently sequential. The right hand side of the bind might compute a computation based on the result of the left hand side of the bind.
link
tel
4331 days ago
It is sequencing—but just not in "time". It sequences in "potential dependency order". This is most clear if you look at free monads.
link