Artifact e2ae9ca9eee0551536f52418f8e1241f6bf9bd77:
- File s2/require.d/ostream.s2 — part of check-in [f7fbfd8cfb] at 2014-11-20 18:39:10 on branch trunk — lots of little s2 stuff, incl. refactoring of hashtables to make them more recycleable and (upcoming) resizable. (user: stephan size: 237)
/** A require() module providing an "ostream" object. It overloads the << operator and sends all arguments to s2.io.output(). */ return { output: s2.io.output, 'operator<<': proc(self,arg){return this.output(arg), this} };