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
After scala/scala#9291
scala> scala.collection.immutable.TreeMap[String, String]()(_ compareToIgnoreCase _) + ("a" -> "1") + ("A" -> "2") val res0: scala.collection.immutable.TreeMap[String,String] = TreeMap(a -> 2) scala> scala.collection.immutable.TreeMap[String, String]()(_ compareToIgnoreCase _) ++ Seq("a" -> "1", "A" -> "2") val res1: scala.collection.immutable.TreeMap[String,String] = TreeMap(A -> 2)
res1 is wrong
res1
The text was updated successfully, but these errors were encountered:
retronym
Successfully merging a pull request may close this issue.
After scala/scala#9291
res1
is wrongThe text was updated successfully, but these errors were encountered: