Class: Arel::Nodes::InfixOperation
- Inherits:
-
Binary
- Object
- Binary
- Arel::Nodes::InfixOperation
- Includes:
- Expressions, Predications
- Defined in:
- lib/ransack/adapters/active_record/3.0/compat.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#operator ⇒ Object
readonly
Returns the value of attribute operator.
Instance Method Summary collapse
-
#initialize(operator, left, right) ⇒ InfixOperation
constructor
A new instance of InfixOperation.
Methods included from Predications
Constructor Details
#initialize(operator, left, right) ⇒ InfixOperation
Returns a new instance of InfixOperation.
83 84 85 86 |
# File 'lib/ransack/adapters/active_record/3.0/compat.rb', line 83 def initialize operator, left, right super(left, right) @operator = operator end |
Instance Attribute Details
#operator ⇒ Object (readonly)
Returns the value of attribute operator.
81 82 83 |
# File 'lib/ransack/adapters/active_record/3.0/compat.rb', line 81 def operator @operator end |