Skip to content

Instantly share code, notes, and snippets.

@yoloroy
Created June 22, 2022 13:56
Show Gist options
  • Select an option

  • Save yoloroy/ab9d4e01285e0d25deadd9c582c1c81d to your computer and use it in GitHub Desktop.

Select an option

Save yoloroy/ab9d4e01285e0d25deadd9c582c1c81d to your computer and use it in GitHub Desktop.
Infinite iterator extension for Iterable
fun <T> Iterable<T>.infiniteIterator() = iterator {
while (true) yieldAll(this@infiniteIterator)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment