Method: Ronin::SQL::Operators#>

Defined in:
lib/ronin/sql/operators.rb

#>(other) ⇒ BinaryExpr

Greater than.

Returns:

  • The new binary expression.

API:

  • public



149
150
151
# File 'lib/ronin/sql/operators.rb', line 149

def >(other)
  BinaryExpr.new(self,:>,other)
end