Method: Sequel::SQL::QualifiedIdentifier#function

Defined in:
lib/sequel/sql.rb

#function(*args) ⇒ Object

Create a Function using this identifier as the functions name, with the given args.



1726
1727
1728
# File 'lib/sequel/sql.rb', line 1726

def function(*args)
  Function.new(self, *args)
end