Sha256: 1ad33635889261cc10ff226e6e695aebd01208bb506eb27378d6d5b99dc4b4c8
Contents?: true
Size: 368 Bytes
Versions: 161
Compression:
Stored size: 368 Bytes
Contents
# frozen_string_literal: true module Arel # :nodoc: all module Nodes class UnaryOperation < Unary attr_reader :operator def initialize(operator, operand) super(operand) @operator = operator end end class BitwiseNot < UnaryOperation def initialize(operand) super(:~, operand) end end end end
Version data entries
161 entries across 156 versions & 14 rubygems