.aspectClass | R Documentation |
Get the class of aspects
.aspectClass(x)
x |
a potential aspect |
The aspect class name or NA
if it's not an aspect
Internal function only for convenience
x = list(a="foo", b="bar") class(x) # [1] "list" ## Not run: .addClass(x) <- .CLS$nodes class(x) # [1] "NodesAspect" "list" .aspectClass(x) # [1] "NodesAspect" .removeClass(x) <- "NodesAspect" .aspectClass(x) # [1] "NA" ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.