Learn R Programming

shard (version 0.1.0)

is_shared: Check if Object is Shared

Description

Check if Object is Shared

Usage

is_shared(x)

Value

A logical scalar: TRUE if x is a shared object, FALSE otherwise.

Arguments

x

An object to check.

Examples

Run this code
is_shared(1:10)
# \donttest{
shared <- share(1:10)
is_shared(shared)
close(shared)
# }

Run the code above in your browser using DataLab