Class Sequel::SQL::ValueList
In: lib/sequel/sql.rb
Parent: ::Array

Represents an SQL value list (IN/NOT IN predicate value). Added so it is possible to deal with a ruby array of two element arrays as an SQL value list instead of an ordered hash-like conditions specifier.

Methods

inspect  

Public Instance methods

Show that this is a value list and not just an array

[Source]

      # File lib/sequel/sql.rb, line 1777
1777:       def inspect
1778:         "#<#{self.class} #{super}>"
1779:       end

[Validate]