Sha256: 2a0bc9668ce9f84a983546c48b45be07554d96ebae4b3d618d6b42b0f86a3e43

Contents?: true

Size: 704 Bytes

Versions: 120

Compression:

Stored size: 704 Bytes

Contents

# frozen_string_literal: true

module Arel # :nodoc: all
  module Nodes
    class Unary < Arel::Nodes::NodeExpression
      attr_accessor :expr
      alias :value :expr

      def initialize(expr)
        super()
        @expr = expr
      end

      def hash
        @expr.hash
      end

      def eql?(other)
        self.class == other.class &&
          self.expr == other.expr
      end
      alias :== :eql?
    end

    %w{
      Bin
      Cube
      DistinctOn
      Group
      GroupingElement
      GroupingSet
      Lateral
      Limit
      Lock
      Not
      Offset
      On
      OptimizerHints
      RollUp
    }.each do |name|
      const_set(name, Class.new(Unary))
    end
  end
end

Version data entries

120 entries across 115 versions & 10 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/activerecord-7.1.3.4/lib/arel/nodes/unary.rb
activerecord-8.0.1 lib/arel/nodes/unary.rb
activerecord-8.0.0.1 lib/arel/nodes/unary.rb
activerecord-7.2.2.1 lib/arel/nodes/unary.rb
activerecord-7.1.5.1 lib/arel/nodes/unary.rb
activerecord-7.0.8.7 lib/arel/nodes/unary.rb
activerecord-8.0.0 lib/arel/nodes/unary.rb
activerecord-7.2.2 lib/arel/nodes/unary.rb
activerecord-7.1.5 lib/arel/nodes/unary.rb
activerecord-8.0.0.rc2 lib/arel/nodes/unary.rb
activerecord-7.2.1.2 lib/arel/nodes/unary.rb
activerecord-7.1.4.2 lib/arel/nodes/unary.rb
activerecord-7.0.8.6 lib/arel/nodes/unary.rb
activerecord-6.1.7.10 lib/arel/nodes/unary.rb
activerecord-8.0.0.rc1 lib/arel/nodes/unary.rb
activerecord-6.1.7.9 lib/arel/nodes/unary.rb
activerecord-7.2.1.1 lib/arel/nodes/unary.rb
activerecord-7.1.4.1 lib/arel/nodes/unary.rb
activerecord-7.0.8.5 lib/arel/nodes/unary.rb
activerecord-8.0.0.beta1 lib/arel/nodes/unary.rb