One more pass on flatMap/mapMulti
Joe Bowbeer
joe.bowbeer at gmail.com
Thu Jan 10 07:59:40 PST 2013
I'm OK with explode; it feels familiar in this context of streams and
functions.
Alternatives:
mapFlatten
mapExpand
mapExplode
I don't like map and multi together except to form the term multimap.
On Jan 10, 2013 7:53 AM, "Brian Goetz" <brian.goetz at oracle.com> wrote:
> The idea behind "Downstream" is that it represents sending results
> downstream. Multifunction and mapMulti conjures up the image that I'm
> mapping a single element to an aggregate, which makes people expect
> Function<T,Collection<T>> (or to Stream<T>). But that's not what's going
> on here. Instead, you get an element, and you get to send zero or more
> results downstream. I think "explode" conjures up more an image of "send
> fragments in this direction", which is more like what's going on here.
>
>
>
> On 1/10/2013 10:45 AM, Tim Peierls wrote:
>
>> On Thu, Jan 10, 2013 at 10:10 AM, Brian Goetz <brian.goetz at oracle.com
>> <mailto:brian.goetz at oracle.com**>> wrote:
>>
>> One more simplification: we don't really need a custom type SAM for
>> Multifunction. We can rewrite mapMulti as:
>>
>> mapMulti(BiBlock<Downstream<T>**__, T>))
>>
>> and move the Downstream class declaration to Stream, and
>> XxxMultifunction go away.
>>
>> mapMulti is still not a great name. How about "explode" ?
>>
>>
>> Um, the not-greatness is in the names BiBlock and Downstream. I have the
>> vague idea that BiBlock is a void procedure taking 2 arguments, and I
>> know you renamed something to Downstream, but the combination of these
>> two into the signature above is impenetrable.
>>
>> mapMulti itself isn't so bad. I can guess at what that might be.
>>
>> --tim
>>
>>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.openjdk.java.net/pipermail/lambda-libs-spec-experts/attachments/20130110/3f3800e0/attachment.html
More information about the lambda-libs-spec-experts
mailing list