Subject: | Wishlist: Working operators / overloading(?) |
Date: | Tue, 11 Aug 2015 12:04:45 +0200 |
To: | bug-URI [...] rt.cpan.org |
From: | bots [...] cryptoguru.org |
Hi,
to my surprise, when I tried to modify an URI path like this
$uri->path .= "/$addpath";
it didn't work (no lvalue).
So if I'm not mistaken or unaware of more elegant options, I have to do
the following instead
$uri->path($uri->path . '/$addpath");
This seems far less elegant and I would prefer the approach mentioned
above.
However, I'm not sure it is possible or desirable for others, so just
take it as a wishlist request.
cheerio,
Massimo - the CryptoGuy