Represents an SQL
expression using the IS DISTINCT FROM operator.
Classes and Modules
Attributes
Public Class methods
new(lhs, rhs)
[show source]
# File lib/sequel/extensions/is_distinct_from.rb 107 def initialize(lhs, rhs) 108 @lhs = lhs 109 @rhs = rhs 110 end