is.shared {SharedObject} | R Documentation |
Test whether the object is a shared object
is.shared(x, ...) ## S4 method for signature 'ANY' is.shared(x, ...) ## S4 method for signature 'list' is.shared(x, ...)
x |
An R object |
... |
For generalization purpose only |
TRUE/FALSE indicating whether the object is a shared object. If the object is a list, the return value is a vector of TRUE/FALSE corresponding to each element of the list.
x <- share(1:10) is.shared(x)