On Nov 12, 2018, at 5:28 PM, robert engels <reng...@ix.netcom.com> wrote:
> 
> You can pretty much look at the Java8 streams source (from OpenJDK) and port 
> it to Go. It would need to use interface{} or reflect - the former probably 
> being faster, but both wouldn’t have the type safety - but I think the code 
> would translate pretty easily. Still with IntStream, etc. you could get some 
> of the the type safety back.
> 
> https://docs.oracle.com/javase/8/docs/api/java/util/stream/Stream.html

IMHO k/apl provide a better model as these languages try
to do everything using arrays and have figured out what
primitives are most useful. I don't see that sort of
well roundedness in the Java stream function list.

Use of reflect doesn't bother me provided the interface (API)
is simple and easy to understand. Similarly if predefined
primitives do proper type checking at runtime, that is fine.
Eventually these primitives can be optimized significantly
without changing the interface.

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to