rnim icon indicating copy to clipboard operation
rnim copied to clipboard

A bridge between R and Nim

Results 3 rnim issues
Sort by recently updated
recently updated
newest added

For scalar types we can continue to simply copy numbers. However, for larger data we will want to have Nim wrapper types that allow access to the underlying data of...

Still need to set up CI and documentation generation. CI requires a few minutes of work to get the R environment working & run the tests correctly.

Assuming we had something like: ```nim proc foo(x: int, y: NumericVector[float]) {.exportR.} = ... ``` the `exportR` pragma should make sure that the procedure is wrapped into another Nim procedure:...