class Ronin::SQL::Function
Represents a SQL
function call.
@api semipublic
Public Class Methods
new(name,*arguments)
click to toggle source
Creates a new Function
object.
@param [Symbol] name
The name of the function.
@param [Array] arguments
The arguments of the function.
Calls superclass method
# File lib/ronin/sql/function.rb, line 47 def initialize(name,*arguments) super(name,arguments) end