Case decision if I declared a Class

60 Views Asked by At

How could I ask R if the class I declared is my class? What I want to do is, if I have a character vector like a<-c("vector","MyClass") I want to write a case decission if that class is written by my self or from a different package?

setClass(Class = "MyClass",
         representation = representation(name = "character",
                                         type = "character"
                                         )
         )

Or how to ask if the class exists in certain namespace?

0

There are 0 best solutions below