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
Show source
def merge!(oth)
t = merge(oth)
if self == t
nil
else
replace!(t)
self
end
end