Last active
November 26, 2019 16:13
-
-
Save ryohji/5b0aba2c98233b732091e1ca8418a9a4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| interface State | |
| interface Event | |
| data class Transition(val event: Event, val state State) | |
| val transitions: Map<State, Set<Transition>) = ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment