class Filterparams::BindingOperation

Attributes

left[RW]
right[RW]

Public Class Methods

new(left, right) click to toggle source
# File lib/filterparams/obj/binding_operation.rb, line 5
def initialize(left, right)
  self.left = left
  self.right = right
end

Public Instance Methods

equal?(other) click to toggle source
# File lib/filterparams/obj/binding_operation.rb, line 10
def equal?(other)
  left == other.left && right == other.right
end