Class: Gloo::Expr::OpIneq
Constant Summary collapse
- SYMBOL =
'!='.freeze
Instance Method Summary collapse
-
#perform(left, right) ⇒ Object
Perform the operation and return the result.
Methods inherited from Core::Op
Instance Method Details
#perform(left, right) ⇒ Object
Perform the operation and return the result.
16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/gloo/expr/op_ineq.rb', line 16 def perform( left, right ) cmp = DtTools.compare_dt( left, right ) return cmp.is_a?( Integer ) && cmp != 0 unless cmp == :not_dt return left != right.to_s if left.is_a? String return left != right.to_i if left.is_a? Integer return left != right.to_f if left.is_a? Numeric return false end |