Represents an SQL function call.
Set the attributes to the given arguments
[Source]
# File lib/sequel/sql.rb, line 576 576: def initialize(f, *args) 577: @f, @args = f, args 578: end
Functions are considered equivalent if they have the same class, function, and arguments.
# File lib/sequel/sql.rb, line 582 582: def ==(x) 583: x.class == self.class && @f == x.f && @args == x.args 584: end
[Validate]