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