Yet another run at reduce
Brian Goetz
brian.goetz at oracle.com
Tue Jan 8 09:08:14 PST 2013
And then...
into(collection)
becomes
reduce(intoList())
reduce(intoSet())
reduce(intoCollection(ArrayList::new))
where intoList() could be as simple as:
public static<T>
Reducer<T,List<T>> intoList() {
return intoCollection(ArrayList<T>::new);
}
and intoCollection is as shown below.
Then into() goes away.
Then sequential() goes away.
On 1/8/2013 11:37 AM, Tim Peierls wrote:
> On Tue, Jan 8, 2013 at 11:18 AM, Brian Goetz <brian.goetz at oracle.com
> <mailto:brian.goetz at oracle.com>> wrote:
>
> Where intoCollection is a simple Reducer:
>
> Reducer<T,C> intoCollection(Supplier<C> collectionFactory) {
> return leftCombiningReducer(__collectionFactory,
> Collection::add, Collection::addAll);
> }
>
>
> And leftCombiningReducer builds a reducer out of its arguments, which
> correspond to makeResult, accumulate, and combine?
>
> --tim
More information about the lambda-libs-spec-experts
mailing list