File s2/require.d/ostream.s2 artifact e2ae9ca9ee part of check-in ee03f7343f
/** 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} };