Class | Sequel::SQL::Function |
In: |
lib/sequel_core/sql.rb
|
Parent: | GenericExpression |
args | [R] | The array of arguments to pass to the function (may be blank) |
f | [R] | The SQL function to call |
Set the attributes to the given arguments
# File lib/sequel_core/sql.rb, line 551 551: def initialize(f, *args) 552: @f, @args = f, args 553: end