You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Eric Milles (Jira)" <ji...@apache.org> on 2022/06/26 22:31:00 UTC

[jira] [Created] (GROOVY-10666) Implement multiple-assignment (aka destructuring) via getAt(IntRange) when supported

Eric Milles created GROOVY-10666:
------------------------------------

             Summary: Implement multiple-assignment (aka destructuring) via getAt(IntRange) when supported
                 Key: GROOVY-10666
                 URL: https://issues.apache.org/jira/browse/GROOVY-10666
             Project: Groovy
          Issue Type: Improvement
            Reporter: Eric Milles


Currently multiple-assignment is implemented using {{getAt(int)}}.  For types that support {{getAt(IntRange)}} it may be more efficient to use that operation.  For cases where {{getAt(int)}} is a terminal operation (aka streams) it may be the only way to go.

Consider the following:
{code:groovy}
Set<String> set = ['foo','bar','baz']
def (foo, bar, baz) = set // inefficient; requires 3 iterators and 6 calls to next

Stream<String> = ['foo','bar','baz'].stream()
def (foo, bar, baz) = stream // not possible because `getAt(int)` is terminal
{code}



--
This message was sent by Atlassian Jira
(v8.20.7#820007)