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