mvl_remap | R Documentation |
This function operates on MVL files opened for writing. When writing new data to the MVL file that data is appended at the end and past the end of previously mapped data.
Calling mvl_remap()
updates the memory mapping to include all the data written before mvl_remap() was called.
The MVL file directory is also updated to include recently added entries. Old handles can still be used, but will not include updated directory information.
MVL_OBJECT's previously obtained from this handle continue to be valid.
mvl_remap(MVLHANDLE, append = TRUE)
MVLHANDLE |
handle to opened MVL file as generated by |
append |
specify FALSE when you do not intend to write the file. |
mvl_remap
returns a handle with updated directory.
handle to MVL file, with updated directory.
mvl_open
, mvl_close
## Not run:
Mtmp<-mvl_open("tmp_a.mvl", append=TRUE, create=TRUE)
mvl_write_object(Mtmp, runif(100), "vec1")
Mtmp<-mvl_remap(Mtmp)
print(Mtmp["vec1"])
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.