File: modules.R

package info (click to toggle)
rcpp 0.12.9-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 10,776 kB
  • ctags: 17,733
  • sloc: ansic: 43,728; cpp: 39,001; sh: 21; makefile: 1
file content (23 lines) | stat: -rw-r--r-- 384 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
library(testRcppModule)

v <- new(vec)
data <- 1:10
v$assign(data)
v[[3]] <- v[[3]] + 1

data[[4]] <- data[[4]] +1

stopifnot(identical(all.equal(v$as.vector(), data), TRUE))

## a few function calls

stopifnot(all.equal(bar(2), 4))
stopifnot(all.equal(foo(2,3), 6))

## properties (at one stage this seqfaulted, so beware)
nn <- new(Num)
nn$x <- pi
stopifnot(all.equal(nn$x, pi))