Skip to content

Instantly share code, notes, and snippets.

@zsoltk
Created September 10, 2022 14:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zsoltk/1546cc7ce5d11875fc2f216ed181f534 to your computer and use it in GitHub Desktop.
Save zsoltk/1546cc7ce5d11875fc2f216ed181f534 to your computer and use it in GitHub Desktop.
fun State.next(): State =
when (this) {
is Queued -> if (queueNumber == 0) Bottom else Queued(queueNumber - 1)
is Bottom -> Top
else -> this
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment