RProtoBuf (version 0.4.22)

merge-methods: Merge two messages of the same type

Description

Merge two Message objects of the same type.

Arguments

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

Run this code

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 ) )

Run the code above in your browser using DataLab