Today we are going to focus on modelling state and state handling logic of a system in a functional way, without touching the user interface.
The...
For further actions, you may consider blocking this person and/or reporting abuse
What interests me is the connection of tagged unions and state machines. With tagged unions you can model values that depend on each other. An asynchronous task, for instance, can either be resolved with a value or rejected with a reason. But it cannot be both or neither. With a tagged union we can rule out the last two invalid states of such a task. This seems to be halfway to a state machine.
That's exactly what's meant by "making impossible states unrepresentable" at the beginning of this article.
State machines have two things: states and transitions. With algebraic data types (tagged unions + records) we can model a state machine's states so that only valid states are represented. The next step would be to also model the transitions this way so that both invalid states as invalid transitions are excluded. This is also possible, but your code gets bloated quickly because you have to explicitly model every state and transition.
That's interesting. Could you give a code example of how tagged unions can model values that depend on each other? And also how you can rule out the last two invalid states.
I don't know ReasonML but I guess it has an
Either
type, right?Either<A, B>
has two value constructorsLeft
/Right
, which can produce values of typeEither<SomeProperType, B>
andEither<A, SomeProperType>
respectively. Consequently you cannot produce the invalid valuesEither<A, B>
(no value at all) orEither<SomeProperType, SomeProperType
(both values at the same time, aka the product). These values or states are ruled out by the way you modelled the data by using a tagged union. Values produced byLeft
andRight
depend on each other, because they are mutually exclusive.That's a pretty good description of the way variants work. OCaml/Reason does not have a built-in
Either
type, but they do have this "disjoint tagged unions" which can behave the same way.The most common data type that models the
Either
type you describe (used in Haskell) is theResult
type. It is modeled using the variant constructorsOk
andError
. So the Reason code would look like:And the type we have there is a bifunctor and a monad, just like
Either
.Great write up, Margarita!
Thank you! 🙂
Fantastic! Looking forward to the next one 🙂
Thank you! Great to have so much feedback from the community 🙂
Great article, I'm new to state machines and learned a lot.
In the last slide of your Stockholm talk, you shared some F# articles that you found useful. Can you link them here?
Thank you!
Here are the articles:
fsharpforfunandprofit.com/posts/de...
fsharpforfunandprofit.com/posts/de...
And the original slides slides.com/margaretkru/state-machi...
StateM is a Monad !