From 2875f3145d6d90acc97b7e3df1de5ae075f3e569 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sun, 6 Dec 2009 23:09:36 -0500 Subject: [PATCH] added a links section to the documentation, with Underscore.lua and collections libraries galore --- index.html | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/index.html b/index.html index b309c0046..70669fc13 100644 --- a/index.html +++ b/index.html @@ -1004,6 +1004,35 @@ _([1, 2, 3]).value(); => [1, 2, 3] +

Links & Suggested Reading

+ +

+ Underscore.lua, + a Lua port of the functions that are applicable in both languages. + Includes OOP-wrapping and chaining. + The source is + available on GitHub. +

+ +

+ Ruby's Enumerable module. +

+ +

+ Prototype.js, which provides + JavaScript with collection functions in the manner closest to Ruby's Enumerable. +

+ +

+ Oliver Steele's + Functional JavaScript, + which includes comprehensive higher-order function support as well as string lambdas. +

+ +

+ Python's itertools. +

+

Change Log