This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// foldr function shamelessly stolen from | |
// http://blog.thatscaptaintoyou.com/haskells-foldr-in-javascript/ | |
// Added 'any' function for my own needs. More at http://puntoblogspot.blogspot.com/ | |
function foldr(fn, ult, xs) { | |
if (xs.length == 0) { | |
return ult; | |
} | |
if (xs.length == 1) { | |
return fn( | |
xs[0], | |
ult | |
); | |
} | |
else { | |
return fn( | |
xs.splice(0, 1)[0], | |
foldr( | |
fn, | |
ult, | |
xs | |
) | |
); | |
} | |
} | |
function any(needle,haystack){ | |
return foldr( | |
function(a,b){ | |
return (b || (a==needle)) | |
}, | |
false, | |
haystack | |
) | |
} | |
any('hola' , 'hola ke tal'.split(' ')) |
I recently took a quick look at coffeescript, and it seems very promising. Unfortunately, I didn't even try it (just the online interpreter). Maybe when I try rails 3.1
No hay comentarios:
Publicar un comentario