package flare.query.methods
{
    import flare.query.Comparison;

    /**
     * Creates a new greater-than <code>Comparison</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 gt(a:*, b:*):Comparison
    {
        return Comparison.GreaterThan(a, b);
    }
}