Represents an SQL function call.
Set the functions and args to the given arguments
[Source]
# File lib/sequel/sql.rb, line 763 763: def initialize(f, *args) 764: @f, @args = f, args 765: end
[Validate]