module Sequel::SymbolAref
:nocov:
Public Instance Methods
[](v)
click to toggle source
Calls superclass method
# File lib/sequel/extensions/symbol_aref.rb 25 def [](v) 26 case v 27 when Symbol, Sequel::SQL::Identifier, Sequel::SQL::QualifiedIdentifier 28 Sequel::SQL::QualifiedIdentifier.new(self, v) 29 else 30 super 31 end 32 end