Hi Andreas,
On Thu, Aug 9, 2018 at 2:26 AM, Festl, Andreas wrote:
> Dear all,
>
> I just have identified the following issue which I believe could be a bug in
> R:
>
> Let me illustrate:
>
> First, enable the display of fractional seconds and check that it works:
>> options(digits.secs = 6, digi
Hi Iñaki,
I think that "still reachable" memory is potentially a problem only if
you cared about (frequent) package unloading, and if package unloading
did not have correctness problems in the first place. I would only worry
about "memory leaks" reported by valgrind.
That your example (unloa
> If x is not a sensible name within the print.myfunction() method, then
there's a one line fix:
>
> print.myfunction <- function(x, ...) {
> f <- x
> dosomething(f)
> }
Naming the argument x is not an option.
>> print = function (...) base::print (...)
> That's a really, really bad idea.
El vie., 10 ago. 2018 a las 14:17, Tomas Kalibera
() escribió:
>
> Hi Iñaki,
>
> I think that "still reachable" memory is potentially a problem only if
> you cared about (frequent) package unloading, and if package unloading
> did not have correctness problems in the first place. I would only worry