search for: rloopconn

Displaying 1 result from an estimated 1 matches for "rloopconn".

2005 Aug 22
2
RFC: "loop connections"
...ons --------------------- */ +/* ------------------- loop connections --------------------- */ /* read a R character vector into a buffer */ static void text_init(Rconnection con, SEXP text) { int i, nlines = length(text), nchars = 0; - Rtextconn this = (Rtextconn)con->private; + Rloopconn this = (Rloopconn)con->private; for(i = 0; i < nlines; i++) nchars += strlen(CHAR(STRING_ELT(text, i))) + 1; @@ -1668,19 +1668,35 @@ this->cur = this->save = 0; } -static Rboolean text_open(Rconnection con) +/* read a R raw vector into a buffer */ +static void raw_init(...