Skip to main content

n-ary curry in CoffeeScript


I was playing with CoffeeScript when I found myself writing the following lines and then looking at them in awe:




compose = (f, g) -> (x) -> f g x
curry = (f) -> (x) -> (y) -> f(x, y)
uncurry = (f) -> (x, y) -> (f x) y



How nice, did I think! Now, as an exercise, I thought I would generalize the curry and uncurry functions to n args, to obtain something similar to this:




curry2 = (f) -> (x) -> (y) -> f(x, y)
curry3 = (f) -> (x) -> (y) -> (z) -> f(x, y, z)
curry4 = (f) -> (x) -> (y) -> (z) -> (t) -> f(x, y, z, t)



And the same thing for uncurry:




uncurry2 = (f) -> (x, y) -> (f x) y
uncurry3 = (f) -> (x, y, z) -> ((f x) y) z
uncurry4 = (f) -> (x, y, z, t) -> (((f x) y) z) t



Writing the n-ary uncurry was not very hard:




uncurry = (n) -> (f) -> (args...) ->
if n == 1
f args[0]
else
((uncurry n - 1) f args.shift()) args...



On the other hand, I can't figure out how to get the n-ary curry to work. I thought of implementing first a curry_list function that is the generalization of this suite:




curry_list2 = (f) -> (x) -> [x, y]
curry_list3 = (f) -> (x) -> (z) -> [x, y, z]
curry_list4 = (f) -> (x) -> (z) -> (t) -> [x, y, z, t]



Here's the implementation:




curry_list = (n) ->
curry_list_accum = (n, accum) ->
if n
(x) ->
accum.push x
curry_list_accum n - 1, accum
else
accum
curry_list_accum n, []



And then I would just compose curry_list with function application to obtain currying. That's what I tried to do:




curry = (n) ->
apply_helper = (f) -> (args) -> f args...
(f) -> compose (apply_helper f), (curry_list n)



But for some reason, it does not work. For exemple, trying to evaluate




curry(3)((a,b,c) -> a + b + c)(1)(2)(3)



yields the following error:




Function.prototype.apply: Arguments list has wrong type




Now after jotting some more notes I understand that trying to compose f with curry_list is incorrect. I do have the intuition that what I'm looking for is something that looks like this composition, but is not exactly that. Am I correct in thinking that?



Finally, what would be a correct implementation?


Source: Tips4allCCNA FINAL EXAM

Comments

  1. You are returning the composed function after curry(3)((a,b,c) -> a + b + c), not the accumulator.

    That means ((args) -> f args...) is receiving a function as argument, your code doesn't wait until the argument list is complete to call f.

    Maybe implement this without composition?

    accumulator = (n, accum, f) ->
    return f accum... if n is 0
    (x) ->
    accum.push x
    accumulator n - 1, accum, f

    curry = (n) ->
    (f) -> accumulator n, [], f

    curry(3)((a,b,c) -> a + b + c)(1)(2)(3) # 6

    ReplyDelete
  2. It doesn't look to me like composition. The last curry implementation you have seems to make no distinction between the function to be curried and the arguments to that function, whereas it would seem that such a distinction is rather important. How about something like this?

    curry = (n, f) ->
    acc = []
    helper = (x) ->
    acc.push x
    if acc.length is n then f acc... else helper

    ReplyDelete
  3. A related generalization is presented in Partial with Free Variables.

    ReplyDelete
  4. I got really interested in solving this, so I wrote this up. It probably needs a few tweaks, but it works awesomely as far as I have tested. Basically just call f.curry() which returns partially applied functions in succession.. until you call it with the last argument that it takes, which is when that partial calls the one before it and so on, all the way back down the the original f.

    partial = (f, args1...) -> (args2...) ->
    f.apply @, args1.concat args2
    partial$ = (f, args) ->
    partial.apply @, [f].concat args

    Function::curry = (args...) ->
    curry$ = (n, f, args...) ->
    curry$$ = (n, f, args...) ->
    if n > args.length
    partial curry$$, (n - args.length), (partial$ f, args)
    else f args
    curry$$ (n - args.length), (partial$ f, args)
    curry$.apply @, [@length, @].concat args


    Now we can do things like this:

    twoToThe = Math.pow.curry 2

    32 == twoToThe 5
    32 == Math.pow.curry()(2)(5)
    32 == Math.pow.curry()(2, 5)
    32 == Math.pow.curry(2, 5)
    32 == Math.pow.curry(2)(5)

    # And just for laughs:
    32 == Math.pow.curry()()()(2)()()()(5)

    ReplyDelete

Post a Comment

Popular posts from this blog

Slow Android emulator

I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but for me it does not. I have followed all instructions in setting up the IDE, SDKs, JDKs and such and have had some success in staring the emulator quickly but is very particulary. How can I, if possible, fix this problem?

CCNA 1 Final Exam 2011 latest (hot hot hot)

  Hi! I have been posted content of ccna1 final exam (latest and only question.) I will post the answer and insert image on sunday. If you care, please subscribe your email an become a first person have full test content. Subcribe now  Some question  have not content because this question have images content. So that can you wait for me? SUNDAY 1. A user sees the command prompt: Router(config-if)# . What task can be performed at this mode? Reload the device. Perform basic tests. Configure individual interfaces. Configure individual terminal lines. 2. Refer to the exhibit. Host A attempts to establish a TCP/IP session with host C. During this attempt, a frame was captured with the source MAC address 0050.7320.D632 and the destination MAC address 0030.8517.44C4. The packet inside the captured frame has an IP source address 192.168.7.5, and the destination IP address is 192.168.219.24. At which point in the network was this packet captured? leaving host A leaving ATL leaving...