merge-methods {RProtoBuf} | R Documentation |
Merge two messages of the same type
Description
Merge two Message objects of the same type.
Methods
signature(x = "Message", y = "Message")
merge two messages of the same type
Errors
An error of class "IncompatibleType" is thrown if the two messages are not of the same message type.
Examples
m1 <- new( tutorial.Person, email = "francoisromain@free.fr" )
m2 <- new( tutorial.Person, id = 5 )
m3 <- merge( m1, m2 )
writeLines( as.character( m1 ) )
writeLines( as.character( m2 ) )
writeLines( as.character( m3 ) )
[Package RProtoBuf version 0.4.22 Index]