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
For be able to write
BigInteger a = 123
instead of
BigInteger a = BigInteger.valueOf(123)
Scala equivalent to:
implicit def intToBigInteger(x: Int) = BigInteger.valueOf(x)
The text was updated successfully, but these errors were encountered:
This is already performed by javac for Integer, Double and other wrapper classes (boxing):
Integer a = 123
transforms to
Integer a = Integer.valueOf(123)
Sorry, something went wrong.
add example for #4: Boxing Overloading
93ff183
eclipse plugin for #4: Boxing Overloading
e8ad485
#4: Implicit type conversion for javac plugin. + refactorings.
8011620
amelentev
No branches or pull requests
For be able to write
instead of
Scala equivalent to:
The text was updated successfully, but these errors were encountered: