web-dev-qa-db-fra.com

Méthode des collections Groovy Map

Existe-t-il une méthode map dans Groovy? Je veux faire quelque chose comme je le fais avec l'extrait suivant Scala:

scala> val l = List(1, 2, 3)
l: List[Int] = List(1, 2, 3)

scala> l.map(_ + 1)
res0: List[Int] = List(2, 3, 4)
63
deamon

Il existe une telle méthode dans groovy, elle s'appelle collect, par exemple:

assert [1, 2, 3].collect { it * 2 } == [2, 4, 6]

http://docs.groovy-lang.org/next/html/documentation/working-with-collections.html#_iterating_on_a_list

82
IttayD