Skip to content
Prev 51638 / 63424 Next

as.vector in R-devel loaded 3/3/2016

Er, until _what_ is fixed?

I see no anomalies with the version in R-pre:
standardGeneric for "as.vector" defined from package "base"

function (x, mode = "any") 
standardGeneric("as.vector")
<environment: 0x7fe8f4516640>
Methods may be defined for arguments: x, mode
Use  showMethods("as.vector")  for currently available ones.
int [1:3] 1 2 3
num [1:3] 1 2 3
+ )
List of 3
 $ : num 1
 $ : num 2
 $ : num 3
int [1:3] 1 2 3
num [1:3] 1 2 3


Also, *current* r-devel has the same definition:

$ ~/r-devel/BUILD-dist/bin/R

R Under development (unstable) (2016-03-03 r70270) -- "Unsuffered Consequences"
[...yadayada...]
function (x, mode = "any") 
.Internal(as.vector(x, mode))
<bytecode: 0x7fdf69279780>
<environment: namespace:base>