fn.as

来自「用于flash/flex的 as3的 2D图形图像图表的动态生成」· AS 代码 · 共 18 行

AS
18
字号
package flare.query.methods
{
	import flare.query.Fn;
	
	/**
	 * Creates a new <code>Fn</code> query operator for a function in a query.
	 * @param name the name of the function. This should be a function
	 *  registered with the Fn class.
	 * @param args a list of arguments to the function
	 * @return the new Fn operator
	 */
	public function fn(name:String, ...args):Fn
	{
		var f:Fn = new Fn(name);
		f.setChildren(args);
		return f;
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?