R/msgpack.writeResult.R

Defines functions msgpack.writeResult

Documented in msgpack.writeResult

msgpack.writeResult <-
function(filename, result) {
	fl <- file(filename, "wb")
	writeBin(result, fl)
	close(fl)
}

Try the msgpackR package in your browser

Any scripts or data that you put into this service are public.

msgpackR documentation built on May 2, 2019, 12:01 p.m.