Skip to content

Instantly share code, notes, and snippets.

@harmeetsingh0013
Created April 11, 2018 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harmeetsingh0013/77e46cfb8fee8db539227289585d17f1 to your computer and use it in GitHub Desktop.
Save harmeetsingh0013/77e46cfb8fee8db539227289585d17f1 to your computer and use it in GitHub Desktop.
// method abstraction basis on type
def add[A: Addable](a: A, b: A)(implicit addable: Addable[A]): A = addable.add(a, b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment