unshare: Unshare a shared object

Description Usage Arguments Value Examples

Description

Unshare a shared object. There will be no effect if the object is not shared.

Usage

1

Arguments

x

a shared object, or an object that contains a shared object.

Value

An unshared object

Examples

1
2
3
4
x1 <- share(1:10)
x2 <- unshare(x1)
is.shared(x1)
is.shared(x2)

SharedObject documentation built on Nov. 8, 2020, 8:17 p.m.