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
Make extra slide with conrete example of deepEquals where arrays are cast to Array[Object]
The text was updated successfully, but these errors were encountered:
Show also Object.deepEquals https://stackoverflow.com/questions/63686721/best-replacement-of-deep-method-in-scala-2-13
Sorry, something went wrong.
scala> java.util.Arrays.deepEquals( | Array(Array("a", Array("b"))).asInstanceOf[Array[Object]], | Array(Array("a", Array("b"))).asInstanceOf[Array[Object]]) val res9: Boolean = true scala> java.util.Objects.deepEquals( | Array(Array("a", Array("b"))), | Array(Array("a", Array("b")))) val res10: Boolean = true
8223dc0
No branches or pull requests
Make extra slide with conrete example of deepEquals where arrays are cast to Array[Object]
The text was updated successfully, but these errors were encountered: