class Concurrent::Collection::AtomicReferenceMapBackend

def initialize_copy(other)

def initialize_copy(other)
  super
  @counter = Concurrent::ThreadSafe::Util::Adder.new
  self.table = nil
  self.size_control = (other_table = other.table) ? other_table.size : DEFAULT_CAPACITY
  self
end