class Sequel::SQL::ValueList

  1. lib/sequel/sql.rb
Superclass: 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

Public Instance

  1. inspect

Public Instance methods

inspect()

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

[show source]
     # File lib/sequel/sql.rb
1840 def inspect
1841   "#<#{self.class} #{super}>"
1842 end