Skip to content

Instantly share code, notes, and snippets.

@HDBandit
Created August 17, 2016 20:47
Show Gist options
  • Save HDBandit/fd3557014d980805d3120cddb00d8bd2 to your computer and use it in GitHub Desktop.
Save HDBandit/fd3557014d980805d3120cddb00d8bd2 to your computer and use it in GitHub Desktop.
object Speed {
implicit def Int2Speed(value: Int): Speed = new Speed(value)
}
case class Speed(value: Int) {
def km_hour: Speed = this
def milles_hour: Speed = this
def meters_second: Speed = this
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment