Jochen Kemnade created GROOVY-7552:
--------------------------------------

             Summary: add 
org.codehaus.groovy.runtime.DefaultGroovyMethods.isEmpty(Iterable)
                 Key: GROOVY-7552
                 URL: https://issues.apache.org/jira/browse/GROOVY-7552
             Project: Groovy
          Issue Type: Improvement
            Reporter: Jochen Kemnade


{code}
def items = [1]
def iterable = { [ hasNext:{ !items.isEmpty() }, next:{ items.pop() } ] as 
Iterator } as Iterable
assert !iterable.isEmpty()
iterable.next()
assert iterable.isEmpty()
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to