Learn R Programming

shard (version 0.1.0)

materialize: Materialize Shared Object

Description

Alias for fetch(). Retrieves the R object from shared memory.

Usage

materialize(x)

# S3 method for shard_shared materialize(x)

# S3 method for default materialize(x)

Value

The original R object.

Arguments

x

A shard_shared object.

Examples

Run this code
# \donttest{
shared <- share(1:100)
data <- materialize(shared)
close(shared)
# }

Run the code above in your browser using DataLab