lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Nov 26, 2010, at 1:53 PM, E. Toernig wrote:

>        sqrt($) --> ???

One of course wants:

	function( x ) return sqrt( x ) end

>        stream:map(sqrt($)) --> ???

But aye, there's the rub because we don't want:

	function( x ) return stream:map( sqrt( x ) ) end

So, much for that option.

Mark