# File lib/map.rb, line 50
    def coerce(other)
      case other
        when Map
          other
        else
          allocate.update(other.to_hash)
      end
    end