I have downloaded that, and I do see those. Take a look at the Iterable interface, it's got all these methods (some pasting errors around generics below, these are not raw types):
- allMatch(Predicate): boolean - anyMatch(Predicate): boolean - count(): long - cumulate(BinaryOperator): Iterable - filter(Predicate): Iterable - flatMap(Mapper>): Iterable* * - forEach(Block): void - getAny(): T - getFirst(): T - getOnly(): T - groupBy(Mapper): MapStream> - groupByMulti(Mapper>): MapStream> - into(A): A - isEmpty(): boolean - iterator(): Iterator - map(Mapper): Iterable - mapped(Mapper): MapStream - mapReduce(DoubleMapper, double, DoubleBinaryOperator): double - mapReduce(IntMapper, int, IntBinaryOperator): int - mapReduce(LongMapper, long, LongBinaryOperator): long - mapReduce(Mapper, U, BinaryOperator): U - noneMatch(Predicate): boolean - reduce(T, BinaryOperator): T - sorted(Comparator): Iterable - uniqueElements(): Iterable ** On Tue, Oct 2, 2012 at 2:59 PM, clay <[email protected]> wrote: > If I download the latest build from http://jdk8.java.net/lambda/, I can > use lambdas perfectly, but I don't see the new functional enhancements to > collections (filter, forEach, map, etc). Anyone know when this will be > available? > > > On Tuesday, October 2, 2012 12:44:35 PM UTC-5, clay wrote: >> >> http://mreinhold.org/blog/_**aux/j1-2012-tech-keynote-fx+**se+em.pdf<http://mreinhold.org/blog/_aux/j1-2012-tech-keynote-fx+se+em.pdf> >> >> On Tuesday, October 2, 2012 10:29:36 AM UTC-5, Simon Ochsenreither wrote: >>> >>> Do you have any links, slides, videos, talks etc.? >>> >>> Haven't seen anything yet. At least the videos are not yet available >>> afaik. >>> >> -- > You received this message because you are subscribed to the Google Groups > "Java Posse" group. > To view this discussion on the web visit > https://groups.google.com/d/msg/javaposse/-/YxvtG_Az14oJ. > > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/javaposse?hl=en. > -- You received this message because you are subscribed to the Google Groups "Java Posse" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/javaposse?hl=en.
