albrow / fo

An experimental language which adds functional programming features to Go.
Other
1.24k stars 34 forks source link

Performance information? #17

Closed ghost closed 6 years ago

ghost commented 6 years ago

I would like to see concrete examples demonstrating the cost in using generics versus simply going with the current approaches available in Go (code generation, etc.)

icholy commented 6 years ago

@rbastic it's doing code generation. So it's equivalent to writing specialised versions for each type.

ghost commented 6 years ago

Ah, I see. Thanks for clearing that up :) I should've just dove into the implementation but I was being lazy.