Examples for 'base::serialize'


Simple Serialization Interface

Aliases: serialize unserialize

Keywords: file connection

### ** Examples

x <- serialize(list(1,2,3), NULL)
unserialize(x)
[[1]]
[1] 1

[[2]]
[1] 2

[[3]]
[1] 3
## see also the examples for saveRDS

[Package base version 4.2.3 Index]