Class: Arel::Predicates::LessThan
- Defined in:
- lib/arel/algebra/predicates.rb
Instance Attribute Summary
Attributes inherited from Binary
Attributes inherited from Unary
Instance Method Summary collapse
Methods inherited from Binary
#==, #bind, #eval, #initialize, #to_sql
Methods inherited from Unary
#==, #bind, #eval, #initialize, #to_sql
Methods inherited from Predicate
Constructor Details
This class inherits a constructor from Arel::Predicates::Binary
Instance Method Details
#complement ⇒ Object
241 242 243 |
# File 'lib/arel/algebra/predicates.rb', line 241 def complement GreaterThanOrEqualTo.new(operand1, operand2) end |
#operator ⇒ Object
245 |
# File 'lib/arel/algebra/predicates.rb', line 245 def operator; :< end |
#predicate_sql ⇒ Object
247 |
# File 'lib/arel/algebra/predicates.rb', line 247 def predicate_sql; '<' end |