Sha256: fbbb03a1361c07203183b9f87c9ad0e8f269270447c66596ecda1b7d96c0c194
Contents?: true
Size: 277 Bytes
Versions: 161
Compression:
Stored size: 277 Bytes
Contents
# frozen_string_literal: true module Arel # :nodoc: all module Nodes class Distinct < Arel::Nodes::NodeExpression def hash self.class.hash end def eql?(other) self.class == other.class end alias :== :eql? end end end
Version data entries
161 entries across 156 versions & 14 rubygems