We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Recurring demand from a few number of users
The text was updated successfully, but these errors were encountered:
With Scala 2.13 it will be possible to do it without macro with something like :
def show(p: Product): String = p.productElementNames.zip(p.productIterator) .map { case (name, value) => s"$name=$value" } .mkString(p.productPrefix + "(", ", ", ")")
Sorry, something went wrong.
pushed #117 PR with macro-free show method on case classes
No branches or pull requests
Recurring demand from a few number of users
The text was updated successfully, but these errors were encountered: