VOOZH about

URL: https://dzone.com/articles/groovy-goodness-drop-or-take

⇱ Groovy Goodness: Drop or Take Elements with Condition


Related

  1. DZone
  2. Coding
  3. Languages
  4. Groovy Goodness: Drop or Take Elements with Condition

Groovy Goodness: Drop or Take Elements with Condition

Likes
Comment
Save
6.1K Views

Join the DZone community and get the full member experience.

Join For Free

In Groovy we can use the drop() and take() methods to get elements from a collection or String object. Since Groovy 1.8.7 we also can use the dropWhile() and takeWhile() methods and use a closure to define a condition to stop dropping or taking elements. With the dropWhile() method we drop elements or characters until the condition in the closure is true. And the takeWhile() method returns elements from a collection or characters from a String until the condition of the closure is true.

In the following example we see how we can use the methods:

def s = "Groovy Rocks!"

assert s.takeWhile { it != 'R' } == 'Groovy '
assert s.dropWhile { it != 'R' } == 'Rocks!'


def list = 0..10

assert 0..4 == list.takeWhile { it < 5 }
assert 5..10 == list.dropWhile { it < 5 }


def m = [name: 'mrhaki', loves: 'Groovy', worksAt: 'JDriven']

assert [name: 'mrhaki'] == m.takeWhile { key, value -> key.length() == 4 }
assert [loves: 'Groovy', worksAt: 'JDriven'] == m.dropWhile { it.key == 'name' }

(Code is written with Groovy 2.0.4)

 
Element Groovy (programming language) Drops (app)

Published at DZone with permission of Hubert Klein Ikkink. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Beyond Algorithms: The Human Element in AI-Driven Cybersecurity
  • Observability for the Invisible: Tracing Message Drops in Kafka Pipelines
  • The Unreasonable Effectiveness of the Actor Model for Creating Agentic LLM Applications
  • Migrating from React Router v5 to v6: A Comprehensive Guide

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

Let's be friends: