Method: Sequel::SQL::OperatorBuilders#**
- Defined in:
- lib/sequel/sql.rb
#**(a, b) ⇒ Object
Return NumericExpression for the exponentiation:
Sequel.**(2, 3) # SQL: power(2, 3)
874 875 876 |
# File 'lib/sequel/sql.rb', line 874 def **(a, b) SQL::NumericExpression.new(:**, a, b) end |