class Arel::Nodes::BitwiseNot

Public Class Methods

new(operand) click to toggle source
# File lib/arel/nodes/unary_operation.rb, line 21
def initialize operand
  super(:~, operand)
end