msgpack.writeResult {msgpackR}R Documentation

the function to save serialized data to file

Description

Save serialized data to file.

Usage

msgpack.writeResult(filename, result)

Arguments

filename

filename that you want to save as

result

serialized data that you want to save

Author(s)

Mikiya TANIZAWA 1970mix@gmail.com

See Also

pack

Examples

(data <- c(1,2,3))
#[1] 1 2 3
(d <- pack(data))
#[1] 93 01 02 03
msgpack.writeResult("test.txt", d)

[Package msgpackR version 1.1 Index]