Skip to content

Instantly share code, notes, and snippets.

@ryohji
Last active November 26, 2019 16:13
Show Gist options
  • Save ryohji/5b0aba2c98233b732091e1ca8418a9a4 to your computer and use it in GitHub Desktop.
Save ryohji/5b0aba2c98233b732091e1ca8418a9a4 to your computer and use it in GitHub Desktop.
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