The R Project SVN R

Rev

Rev 85981 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 85981 Rev 88907
Line 91... Line 91...
91
  object to a file or connection.
91
  object to a file or connection.
92
 
92
 
93
  \code{\link{save}} and \code{\link{load}} to serialize and restore one
93
  \code{\link{save}} and \code{\link{load}} to serialize and restore one
94
  or more named objects.
94
  or more named objects.
95
 
95
 
96
  The \sQuote{R Internals} manual for details of the format used.
96
  Section \manual{R-ints}{Serialization Formats} for details of the format used.
97
}
97
}
98
\examples{
98
\examples{
99
x <- serialize(list(1,2,3), NULL)
99
x <- serialize(list(1,2,3), NULL)
100
unserialize(x)
100
unserialize(x)
101
 
101