rstream.packed-methods {rstream} | R Documentation |
Methods for Function rstream.packed in Package ‘rstream’
Description
Get status (packed/unopacked) of an "rstream" object in package rstream.
Pack and unpack an "rstream" object in package rstream.
When a "rstream" object should be used in another R session or saved for some kind of later reuse all information about the object must be packed. Notice no method other than unpacking can be applied to a packed object. It must be unpacked before.
Usage
## S4 method for signature 'rstream'
rstream.packed(stream)
rstream.packed(stream) <- value
Arguments
stream |
an "rstream" object. |
value |
a boolean ( |
Methods
Methods available for all "rstream" subclasses:
rstream.mrg32k3a
,
rstream.runif
.
Author(s)
Josef Leydold josef.leydold@wu.ac.at
See Also
Examples
## create a new rstream object (of subclass rstream.mrg32k3a)
s <- new("rstream.mrg32k3a")
## pack rstream object
rstream.packed(s) <- TRUE
## status of object
rstream.packed(s)
## pack rstream object
rstream.packed(s) <- FALSE
[Package rstream version 1.3.7 Index]