Skip to content

Instantly share code, notes, and snippets.

@dorsev
Created January 19, 2019 14:35
Show Gist options
  • Save dorsev/169b11d232f28f43d41b997bf2eeeae2 to your computer and use it in GitHub Desktop.
Save dorsev/169b11d232f28f43d41b997bf2eeeae2 to your computer and use it in GitHub Desktop.
def min[B >: A](implicit cmp: Ordering[B]): A = {
if (isEmpty)
throw new UnsupportedOperationException("empty.min")
//.. does not really matter
}
def reduceLeft.... = //see TraversableOnce.scala code for mroe info
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment