Skip to content

Instantly share code, notes, and snippets.

@voddan
Created June 4, 2016 14:31
Show Gist options
  • Save voddan/375bfa3cc32a243d2041a74e3e08b51c to your computer and use it in GitHub Desktop.
Save voddan/375bfa3cc32a243d2041a74e3e08b51c to your computer and use it in GitHub Desktop.
interface Circular<T> {
fun state(): T
fun inc()
fun isZero(): Boolean // `true` in exactly one state
fun hasNext(): Boolean // `false` if the next state `isZero()`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment