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

[韓日関係] 首相含む大幅な内閣改造の可能性…早ければ来月10日ごろ=韓国

div not scrolling properly with slimScroll plugin

I am using the slimScroll plugin for jQuery by Piotr Rochala Which is a great plugin for nice scrollbars on most browsers but I am stuck because I am using it for a chat box and whenever the user appends new text to the boxit does scroll using the .scrollTop() method however the plugin's scrollbar doesnt scroll with it and when the user wants to look though the chat history it will start scrolling from near the top. I have made a quick demo of my situation http://jsfiddle.net/DY9CT/2/ Does anyone know how to solve this problem?

Why does this javascript based printing cause Safari to refresh the page?

The page I am working on has a javascript function executed to print parts of the page. For some reason, printing in Safari, causes the window to somehow update. I say somehow, because it does not really refresh as in reload the page, but rather it starts the "rendering" of the page from start, i.e. scroll to top, flash animations start from 0, and so forth. The effect is reproduced by this fiddle: http://jsfiddle.net/fYmnB/ Clicking the print button and finishing or cancelling a print in Safari causes the screen to "go white" for a sec, which in my real website manifests itself as something "like" a reload. While running print button with, let's say, Firefox, just opens and closes the print dialogue without affecting the fiddle page in any way. Is there something with my way of calling the browsers print method that causes this, or how can it be explained - and preferably, avoided? P.S.: On my real site the same occurs with Chrome. In the ex