Class: Arel::Nodes::Exponentiation

Inherits:
InfixOperation
  • Object
show all
Defined in:
lib/arel/extensions/exponentiation.rb

Overview

Instance Method Summary collapse

Constructor Details

#initialize(left, right) ⇒ Exponentiation

Returns a new instance of Exponentiation.



5
6
7
# File 'lib/arel/extensions/exponentiation.rb', line 5

def initialize(left, right)
  super(:^, left, right)
end