Class: ActiveRecord::Refined::AST::Function
- Includes:
- Arithmetics, Predications, Windowing
- Defined in:
- lib/active_record/refined/ast.rb
Overview
A function call, UPPER(name): what the scalar functions of
BlockContext build, and BlockContext#fn for a function the list
does not name.
Direct Known Subclasses
Instance Method Summary collapse
-
#initialize(name, args) ⇒ Function
constructor
A new instance of Function.
Methods included from Windowing
Methods included from Arithmetics
#&, #*, #+, #-, #/, #<<, #>>, #^, #bitwise_and, #bitwise_not, #bitwise_or, #bitwise_xor, #|, #~
Methods included from Predications
#!=, #!~, #<, #<=, #==, #=~, #>, #>=, #between?, #bury, #casecmp?, #contains?, #dig, #dig_text, #distinct_from?, #end_with?, #except, #false?, #ilike?, #in?, #include?, #intersect?, #key?, #keys, #like?, #member?, #not_between?, #not_distinct_from?, #not_false?, #not_ilike?, #not_in?, #not_like?, #not_null?, #not_true?, #null?, #start_with?, #subset?, #superset?, #true?, #when
Methods inherited from Node
Constructor Details
#initialize(name, args) ⇒ Function
Returns a new instance of Function.
2093 2094 2095 2096 |
# File 'lib/active_record/refined/ast.rb', line 2093 def initialize(name, args) @name = name @args = args end |