Description Usage Arguments Details Value Examples
Test whether the object is a shared object
1 2 3 4 |
x |
An R object |
... |
For generalization purpose only |
depth |
Whether to recursively check the element of |
showAttributes |
Whether to check the attributes of |
When depth=0
, the is.shared
function return a single logical value indicating
whether x
contains any shared objects. When depth>0
and x
is a
container(e.g. list
), the function will recursively check each element of x
and
return a list with each elements corresponding to the elements in x
.
The depth of the checking procedure is determined by the depth
parameter.
if showAttributes = TRUE
, the attributes of the object will also be checked. The
result can be find in sharedAttributes
attribute. Note that showAttributes
has
no effect on an S4 object for the attributes of an S4 object are used to store the
slots and should not be treated as the attributes of an object.
a single logical value of a list.
1 2 3 4 5 6 7 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.