RList.this

Convenience method that allows you to create an RList from a list in R by passing a string holding the R variable name.

  1. this(int n)
  2. this(Robj v, bool u = false)
  3. this(string name)
    struct RList
    version(standalone)
    this
    (
    string name
    )

Examples

To pull x from R into D. Will throw an error if x is not a list.

auto y = RList("x");

Meta