[Rcpp-commits] r3394 - pkg/int64/man

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Tue Nov 22 10:46:04 CET 2011


Author: romain
Date: 2011-11-22 10:46:03 +0100 (Tue, 22 Nov 2011)
New Revision: 3394

Modified:
   pkg/int64/man/int64-class.Rd
   pkg/int64/man/int64.Rd
   pkg/int64/man/uint64-class.Rd
   pkg/int64/man/uint64.Rd
Log:
some doc crosslinks

Modified: pkg/int64/man/int64-class.Rd
===================================================================
--- pkg/int64/man/int64-class.Rd	2011-11-21 21:20:01 UTC (rev 3393)
+++ pkg/int64/man/int64-class.Rd	2011-11-22 09:46:03 UTC (rev 3394)
@@ -67,7 +67,10 @@
 \seealso{
     \code{\link{as.int64}} to convert character or integer vectors. 
     
-    \code{\link{int64}} to create new \code{\linkS4class{int64}} vectors of a given size. 
+    \code{\link{int64}} to create new \code{\linkS4class{int64}} vectors of a given size.
+    
+    The \code{\linkS4class{uint64}} class to represent unsigned 64 bit 
+    integer vectors. 
 }
 \examples{
     x <- int64( 4 )

Modified: pkg/int64/man/int64.Rd
===================================================================
--- pkg/int64/man/int64.Rd	2011-11-21 21:20:01 UTC (rev 3393)
+++ pkg/int64/man/int64.Rd	2011-11-22 09:46:03 UTC (rev 3394)
@@ -22,7 +22,10 @@
 }
 \seealso{
     \code{\link{as.int64}} for converting integer or character vectors
-    into \code{\linkS4class{int64}} vectors
+    into \code{\linkS4class{int64}} vectors. 
+    
+    \code{\link{uint64}} for unsigned 64 bit integer vectors, i.e. of 
+    class \code{\linkS4class{uint64}}
 }
 \examples{
 x <- int64(10L)

Modified: pkg/int64/man/uint64-class.Rd
===================================================================
--- pkg/int64/man/uint64-class.Rd	2011-11-21 21:20:01 UTC (rev 3393)
+++ pkg/int64/man/uint64-class.Rd	2011-11-22 09:46:03 UTC (rev 3394)
@@ -67,7 +67,10 @@
 \seealso{
     \code{\link{as.uint64}} to convert character or integer vectors. 
     
-    \code{\link{int64}} to create new \code{\linkS4class{int64}} vectors of a given size. 
+    \code{\link{uint64}} to create new \code{\linkS4class{uint64}} vectors of a given size.
+    
+    The \code{\linkS4class{int64}} class to represent signed 64 bit 
+    integer vectors.
 }
 \examples{
     x <- uint64( 4 )

Modified: pkg/int64/man/uint64.Rd
===================================================================
--- pkg/int64/man/uint64.Rd	2011-11-21 21:20:01 UTC (rev 3393)
+++ pkg/int64/man/uint64.Rd	2011-11-22 09:46:03 UTC (rev 3394)
@@ -22,7 +22,10 @@
 }
 \seealso{
     \code{\link{as.uint64}} for converting integer or character vectors
-    into \code{\linkS4class{uint64}} vectors
+    into \code{\linkS4class{uint64}} vectors. 
+    
+    \code{\link{int64}} for signed 64 bit integer vectors, i.e. of class
+    \code{\linkS4class{int64}. 
 }
 \examples{
 x <- uint64(10L)



More information about the Rcpp-commits mailing list