R/serialization.R

Defines functions unserializeFromRaw serializeToRaw

Documented in serializeToRaw unserializeFromRaw

##  RApiSerialize -- Packge to provide Serialization as in the R API
##
##  Copyright (C) 2014 - 2022  Dirk Eddelbuettel
##
##  This file is part of RApiSerialize.
##
##  RApiSerialize is free software: you can redistribute it and/or modify
##  it under the terms of the GNU General Public License as published by
##  the Free Software Foundation, either version 2 of the License, or
##  (at your option) any later version.
##
##  RApiSerialize is distributed in the hope that it will be useful,
##  but WITHOUT ANY WARRANTY; without even the implied warranty of
##  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
##  GNU General Public License for more details.
##
##  You should have received a copy of the GNU General Public License
##  along with RApiSerialize.  If not, see <http://www.gnu.org/licenses/>.

serializeToRaw <- function(obj, version=2) {
    .Call(C_serializeToRaw, obj, version)
}

unserializeFromRaw <- function(obj) {
    .Call(C_unserializeFromRaw, obj)
}
eddelbuettel/rapiserialize documentation built on Feb. 27, 2024, 4:32 a.m.