Skip to content

Instantly share code, notes, and snippets.

@dreadedsoftware
Created February 13, 2015 00:50
Show Gist options
  • Save dreadedsoftware/0fb2bef6d944c5366275 to your computer and use it in GitHub Desktop.
Save dreadedsoftware/0fb2bef6d944c5366275 to your computer and use it in GitHub Desktop.
def roundRobin[T](seq: IndexedSeq[T]): Stream[T] = {
val size = seq.size
Stream.from(0).map{_ % size}.map{seq(_)}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment