R/clone.R

Defines functions ._clone.message

setGeneric( "clone", function( object, ... ){
	standardGeneric( "clone" )
} )
._clone.message <- function( object, ... ){
	message <- .Call(Message__clone, object@pointer)
	update( message, ... )
	message
}
setMethod( "clone", "Message", ._clone.message )

Try the RProtoBuf package in your browser

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

RProtoBuf documentation built on May 29, 2024, 3:14 a.m.