Skip to content

Instantly share code, notes, and snippets.

Created August 10, 2017 06:31
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 anonymous/35b454f573225ee2d6c55ec0129e214b to your computer and use it in GitHub Desktop.
Save anonymous/35b454f573225ee2d6c55ec0129e214b to your computer and use it in GitHub Desktop.
the description for this gist
trait Language[Wrapper[_]] {
...
def text(v: String): Wrapper[String]
def toUpper(a: Wrapper[String]): Wrapper[String]
def concat(a: Wrapper[String], b: Wrapper[String]): Wrapper[String]
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment