Displaying 3 results from an estimated 3 matches for "3acran".
2015 May 04
1
Define replacement functions
No. I fixed that, the NAMESPACE file now contains:
S3method("[[<-", mylist)
S3method("$<-", mylist)
It still does not work. I also created a print method (print.mylist) which did work out of the box, regardless of being in the NAMESPACE file or not. Could it be somehow in here (also in my NAMESPACE file):
exportPattern("^[[:alpha:]]+")
Or could it be that
2019 Dec 15
1
system2 doesn't quote stdin on unix, unlike stdout, stderr & input and on Windows
...mmand, "<", shQuote(stdin))
if(!wait && !intern) command <- paste(command, "&")
.Internal(system(command, intern, timeout))
}
--
Best regards,
Ivan
[*] https://bugs.r-project.org/bugzilla/show_bug.cgi?id=17673
[**] https://github.com/search?q=org%3Acran+system2%28+stdin&type=Code
The search is probably computationally expensive and thus might only be available to GitHub account holders. The results are:
- BatchJobs: R/WorkerLinux.R; stdin is "" by default, filenames generated by
cfBrewTemplate aren't quoted
- batchtools: ca...
2019 Mar 23
4
topenv of emptyenv
I was surprised just now to find out that `topenv(emptyenv())` equals
? `.GlobalEnv`, not `emptyenv()`. From my understanding of the
description of `topenv`, it should walk up the chain of enclosing
environments (as if by calling `e = parent.env(e)` repeatedly; in
fact, that is almost exactly its implementation in envir.c) until it
hits a top level. However, `emptyenv()` has no enclosing