Skip to content

Instantly share code, notes, and snippets.

@mdellavo
Created November 29, 2014 02:49
Show Gist options
  • Save mdellavo/963b0b6d647d51284a51 to your computer and use it in GitHub Desktop.
Save mdellavo/963b0b6d647d51284a51 to your computer and use it in GitHub Desktop.
def toBigDecimal(x : java.math.BigDecimal) : BigDecimal = {
Option(x) match {
case Some(i) => i
case None => BigDecimal(-1)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment