method

initialize_copy

v7.1.3.4 - Show latest stable - Class: Arel::Nodes::Binary
initialize_copy(other)
public

No documentation available.

# File activerecord/lib/arel/nodes/binary.rb, line 14
      def initialize_copy(other)
        super
        @left  = @left.clone if @left
        @right = @right.clone if @right
      end