the description for this gist
implicit class ShowOps[A: Show](a: A) { | |
def show = Show[A].show(a) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
implicit class ShowOps[A: Show](a: A) { | |
def show = Show[A].show(a) | |
} |