Mercurial > pub > dyncall > bindings
view R/rdyncall/demo/qsort.R @ 22:4ee8d6aa7721
- java binding cleanup, exposed free functions (not very oo, this entire binding)
- java binding examples
author | cslag |
---|---|
date | Sat, 09 Apr 2016 18:18:34 -0500 |
parents | 0cfcc391201f |
children |
line wrap: on
line source
dynbind(c("msvcrt","c","c.so.6"), "qsort(piip)v;") cb <- new.callback("pp)i",function(px,py){ x <- .unpack(px, 0, "d") y <- .unpack(py, 0, "d") if (x > y) return(1) else if (x == y) return(0) else return(-1) }) x <- rnorm(100) qsort(x,length(x),8,cb)