📄 mul.as
字号:
package flare.query.methods
{
import flare.query.Arithmetic;
/**
* Creates a new multiplication <code>Arithmetic</code> query operator.
* @param a the left side argument.
* This value can be an expression or a literal value.
* Literal values are parsed using the Expression.expr method.
* @param b the right side argument
* This value can be an expression or a literal value.
* Literal values are parsed using the Expression.expr method.
* @return the new query operator
*/
public function mul(a:*, b:*):Arithmetic
{
return Arithmetic.Multiply(a, b);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -