[
https://issues.apache.org/jira/browse/GROOVY-10682?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17563847#comment-17563847
]
Paul King edited comment on GROOVY-10682 at 7/7/22 3:59 PM:
------------------------------------------------------------
+1, sounds useful - we do have indexed but it adds overheads:
{code}
@groovy.transform.TypeChecked
void test(int[] ints) {
ints.indexed().each { index, value ->
println "$index: ${value.doubleValue()}"
}
}
test(3,2,1)
{code}
was (Author: paulk):
+1, sounds useful - we do have indexed and withIndex but they can be overkill
sometimes
> Provide eachWithIndex for primitive arrays
> ------------------------------------------
>
> Key: GROOVY-10682
> URL: https://issues.apache.org/jira/browse/GROOVY-10682
> Project: Groovy
> Issue Type: Improvement
> Components: groovy-jdk
> Reporter: Eric Milles
> Priority: Minor
>
> Consider the following:
> {code:groovy}
> @groovy.transform.TypeChecked
> void test(int[] ints) {
> ints.eachWithIndex { value, index ->
> println "$index: ${value.doubleValue()}"
> }
> }
> test(0,1,2,3,4,5)
> {code}
> Compiler reports "[Static type checking] - Cannot find matching method
> java.lang.Object#doubleValue()"
> {{eachWithIndex}} is only provided for reference types, so "value" is seen as
> Object by the type checker.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)