Class: TransactionQL::Equal

Inherits:
NumericExpression show all
Defined in:
lib/transaction_ql/expressions.rb

Instance Method Summary collapse

Methods inherited from NumericExpression

#matches?

Methods inherited from Expression

#matches?

Constructor Details

#initialize(column, other) ⇒ Equal

Returns a new instance of Equal.



89
90
91
# File 'lib/transaction_ql/expressions.rb', line 89

def initialize(column, other)
  super column, other, :==
end