After seeing how the List and Maybe monads are defined, I naturally became curious about how
the operations >>= and return are defined for the IO monad.
|
|
|
There is no specific implementation for Basically, That said, if you look at GHC's source code, you'll find that it represents Instead, GHC uses impure primitives to implement these IO operations; the But if you really want to see GHC's implementation of
where It's important to note that 1 The state monad is a monad used for accessing and mutating a state across a series of computations; it's represented as |
|||||||||||||||||
|
|
You will be dissapointed, but the
That means See IO inside article on Haskell wiki for more details about the Update: And there goes another dissapointment, which is my answer, because I didn't notice the '#' in As @ehird wrote
|
|||||||||
|
|
They don't do anything special, and are just there for sequencing actions. It would help if you think of them with different names: >>= becomes "and then, using the result of the previous action," >> becomes "and then," return becomes "do nothing, but the result of doing nothing is" This turns this function:
becomes:
In the end, there's nothing magical about IO. It's exactly as magical as a semicolon is in C. |
|||||||||||||||
|