Method: Ronin::Code::SQL::Operators#<

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

#<(other) ⇒ BinaryExpr

Less than.

Parameters:

  • other (Object)

Returns:



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

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