jonatan5524/gamda

How to implement carry function

Opened this issue · 0 comments

current implementation there is no carry, for each function, there is one implementation for it that receives the arguments as expected.
in Ramdajs by default if you are not calling the final arguments the functions automatically carried and return functions.
I can make generic carrying using the interface{} type on argument and return type but then I lose the typing.
Maybe use go generate to generate different types for each function? but I can't use the same function name (overloading).