merge!(oth)
public
Args
Description
Destructive form of #merge
Usage
require 'uri'
uri = URI.parse("http://my.example.com")
uri.merge!("/main.rbx?page=1")
p uri
# File lib/uri/generic.rb, line 714
def merge!(oth)
t = merge(oth)
if self == t
nil
else
replace!(t)
self
end
end