class Arel::Nodes::UnaryOperation

Attributes

operator[R]

Public Class Methods

new(operator, operand) click to toggle source
Calls superclass method Arel::Nodes::Unary.new
# File lib/arel/nodes/unary_operation.rb, line 13
def initialize operator, operand
  super(operand)
  @operator = operator
end