Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7043617
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T02:18:42+00:00 2026-05-28T02:18:42+00:00

Is there a Groovy way of removing a Collection’s item while iterating? In Java

  • 0

Is there a Groovy way of removing a Collection’s item while iterating? In Java this is accomplished using Iterator.remove():

Collection collection = ...
for (Iterator it=collection.iterator(); it.hasNext(); ) {
    Object obj = it.next();
    if (should remove) {
        it.remove();
    }
}

Does Groovy provide remove-while-iterating in its language syntax, or do I have do use Iterator.remove()?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T02:18:43+00:00Added an answer on May 28, 2026 at 2:18 am

    Use removeAll().

    > c = [1, 2, 3, 4, 5]
    > c.removeAll { it % 2 == 0 }
    > println c
    [1, 3, 5]
    

    You ask specifically about “while iterating”, are you trying to do something with/too each object? removeAll still works as long as the closure’s last statement is still truthy/falsey (as before):

    > c.removeAll { 
    *     tmp = it * 10
    *     println "ohai ${it}*10=${tmp}"
    *     tmp >= 40
    * }
    ohai 1*10=10
    ohai 2*20=20
    ohai 3*30=30
    ohai 4*40=40
    ohai 5*50=50
    > println c
    [1, 2, 3]
    

    The closure’s return value (value of the last statement, or an explicit return value) is truthy/falsey, it will be used to determine what should be removed. It doesn’t need to refer explicitly to each object.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there some way to use default parameters values with closures in Groovy? This
Is there a way I can use Java (or Groovy) to change my desktop
Is there a way to control groovy's MarkupBuilder's output and filter out the newline
is there a way to 'break' out of a groovy closure. maybe something like
Is there a way in Groovy to get the duration between two Date objects?
Is there a way to use anonymous code blocks in Groovy? For example, I'm
Is there a way to parse all all the classes in a groovy script?
Is there a way to modify the code from a previous answer import groovy.xml.MarkupBuilder
Is there a way to use the groovy .collect method, but only up to
is there a built-in support in Groovy to handle Zip files (the groovy way)?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.