Sha256: 3ed5d09c6c16ec2bd7662fa4bc5519add444a3b0c739ca95430419ec7097d54f
Contents?: true
Size: 470 Bytes
Versions: 32
Compression:
Stored size: 470 Bytes
Contents
module Arel module Nodes class And < Arel::Nodes::Node attr_reader :children def initialize children super() @children = children end def left children.first end def right children[1] end def hash children.hash end def eql? other self.class == other.class && self.children == other.children end alias :== :eql? end end end
Version data entries
32 entries across 31 versions & 9 rubygems