[Rd] Possible bug in `class<-` when a class-specific '[[.' method is defined

Ghiggi Gionata g|on@t@@gh|gg| @end|ng |rom ep||@ch
Sun Jul 7 17:49:23 CEST 2019


Hi all !

I noticed a strange behaviour of the function `class<-` when a class-specific '[[.' method is defined.

Here below a reproducible example :


#-------------------------------------------------------------------.

counttt <- 0

`[[.MYCLASS` = function(x, ...) {
  counttt <<- counttt + 1
  # browser()
  x = NextMethod()
  return(x)
}

df <- as.data.frame(matrix(1:20, nrow=5))
class(df) <- c("MYCLASS","data.frame")
counttt

# The same occurs when using structure(, class=) or attr(,"class")<-
df <- as.data.frame(matrix(1:20, nrow=5))
df <- structure(df, class=c("MYCLASS","data.frame"))
attr(df, "class") <- c("MYCLASS","data.frame")

#-------------------------------------------------------------------.

Why in this example `class<-` is calling  `[[.MYCLASS` 9 times ?

Is there a way to avoid `class<-` to call `[[.MYCLASS` ?


Thank you in advance for your help and suggestions.

Gionata



	[[alternative HTML version deleted]]



More information about the R-devel mailing list