Skip to content

Instantly share code, notes, and snippets.

@LukaJCB
Last active August 2, 2016 18:37
Show Gist options
  • Select an option

  • Save LukaJCB/43b9e1cfde0d5893037d5a08a3c7fa2a to your computer and use it in GitHub Desktop.

Select an option

Save LukaJCB/43b9e1cfde0d5893037d5a08a3c7fa2a to your computer and use it in GitHub Desktop.
val res = arr match {
case Array(0) => "0"
case Array(x, y) => x + " > " + y
case Array(0, _*) => "0 > ..."
case _ => "..."
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment