Created
May 19, 2016 13:17
-
-
Save NZhuravlev/4d03843859795d6d759086c1b8489a2a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.doublescoring.socredit | |
class Customer { | |
List<Order> orders; | |
} | |
class Order { | |
List<String> products; | |
} | |
println([new Customer(orders: [new Order(products: ["гавно", "шлак"])])] | |
.collectMany { it.orders } | |
.collectMany { it.products } | |
.findAll { it != "гавно" } | |
.size() | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment