is.shared {SharedObject}R Documentation

Test whether the object is a shared object

Description

Test whether the object is a shared object

Usage

is.shared(x, ...)

## S4 method for signature 'ANY'
is.shared(x, ...)

## S4 method for signature 'list'
is.shared(x, ...)

Arguments

x

An R object

...

For generalization purpose only

Value

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.

Examples

x <- share(1:10)
is.shared(x)

[Package SharedObject version 1.2.2 Index]