[Rprotobuf-commits] r470 - patches

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Thu Aug 9 04:52:30 CEST 2012


Author: edd
Date: 2012-08-09 04:52:30 +0200 (Thu, 09 Aug 2012)
New Revision: 470

Added:
   patches/patch_by_Murray_rprotobuf_r468.diff
Log:
another patch by Murray


Added: patches/patch_by_Murray_rprotobuf_r468.diff
===================================================================
--- patches/patch_by_Murray_rprotobuf_r468.diff	                        (rev 0)
+++ patches/patch_by_Murray_rprotobuf_r468.diff	2012-08-09 02:52:30 UTC (rev 470)
@@ -0,0 +1,27 @@
+Index: add.Rd
+===================================================================
+--- add.Rd	(revision 453)
++++ add.Rd	(working copy)
+@@ -5,11 +5,20 @@
+ \alias{add,Message-method}
+ \title{add elements of a repeated field of a message}
+ \description{
+-add elements to a repeated field of a message. 
++Add elements to a repeated field of a message.
+ }
+ \section{Methods}{
+ \describe{
+ \item{\code{signature(object = "Message")}}{add elements to a repeated field of a message}
+ }}
++\examples{
++unitest.proto.file <- system.file("unitTests", "data", "unittest.proto",
++				  package = "RProtoBuf" )
++readProtoFiles(file = unitest.proto.file)
++
++test <- new(protobuf_unittest.TestAllTypes)
++test$add("repeated_int32", 1)
++test$add("repeated_int32", 2:10)
++test$repeated_int32
++}
+ \keyword{methods}
+-



More information about the Rprotobuf-commits mailing list