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.



1717
1718
1719
# File 'lib/sequel/sql.rb', line 1717

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