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
Consider the following:
class C { String value } def lists = [[[ [a:1] ]]] def result = lists*.value
The inferred type of "value" should be Integer and "result" should be List<List<List<Integer>>>.
Integer
List<List<List<Integer>>>
The text was updated successfully, but these errors were encountered:
Fix for #763: spread-dot penetrates multiple layers of collection types
7a8487d
- also map*.x applies to entrySet() and [map,map]*.x applies to Map
improve get-at/spread-dot of iterator(), entrySet(), Matcher and Reader
a744860
#763
eric-milles
No branches or pull requests
Consider the following:
The inferred type of "value" should be
Integer
and "result" should beList<List<List<Integer>>>
.The text was updated successfully, but these errors were encountered: