import com.fluent.collections.Lists;
public class FluentCollectionExample {
public static void main(String[] args) {
Lists<Integer> numbers = Lists.from(1, 2, 3, 4, 5);
List<Integer> result = numbers.filter((i) -> i > 2)
.map((i) -> i * 2)
.toList();
}
}