Re: Link.js v0.2.15
Reply #185 –
Sure, I like that a lot. Random = multiple returns, while sample = unique returns.
I have just now added concat. But this is a lazy concat. Picture doing this:
Link([1, 2, 3]).concat([1, ..., 1000000]).take(5).toArray();
In a traditional style, it'll concat the first 3 items to the other million items then strip out and return the first 5. In Link it will say, "oh run the query and add the first 3 items, then two more and quit". It should be really fast. 
Edit: ok, it is done. I'm still calling this v0.2.15 until I have ran out of ideas, then I'll push it officially as a release.