Re: [Rd] edit() doubles backslashes when keep.source=TRUE

2020-05-15 Thread Bemis, Kylie
Nightly binary builds of R-devel for macOS are available: http://mac.r-project.org ~~~ Kylie Ariel Bemis (she/her) Khoury College of Computer Sciences Northeastern University kuwisdelu.github.io On May 15, 2020, at 12:48 PM, brodie gaslam via R-devel mailto

Re: [Rd] ALTREP wrappers and factors

2019-08-16 Thread Bemis, Kylie
r even know it has happened. On Thu, Jul 18, 2019 at 3:28 AM Bemis, Kylie mailto:k.be...@northeastern.edu>> wrote: > Hello, > > I’m experimenting with ALTREP and was wondering if there is a preferred > way to create an ALTREP wrapper vector without using > .Internal(wrap_me

Re: [Rd] Any plans for ALTREP lists (VECSXP)?

2019-08-16 Thread Bemis, Kylie
mailto:r-devel@r-project.org>> wrote: Hi Kylie, As an alternative in the short term, you could consider deriving from S4Vector's List class, implementing the getListElement() method to lazily create the objects. Michael On Tue, Jul 23, 2019 at 9:09 AM Bemis, Kylie mailto:k.be.

[Rd] Any plans for ALTREP lists (VECSXP)?

2019-07-23 Thread Bemis, Kylie
Hello, I was wondering if there were any plans for ALTREP lists (VECSXP)? It seems to me that they could be supported in a similar way to how ALTSTRING works, with Elt() and Set_elt() methods, or would there be some problems with that I’m not seeing due to lists not being atomic vectors? I was

[Rd] ALTREP wrappers and factors

2019-07-18 Thread Bemis, Kylie
Hello, I’m experimenting with ALTREP and was wondering if there is a preferred way to create an ALTREP wrapper vector without using .Internal(wrap_meta(…)), which R CMD check doesn’t like since it uses an .Internal() function. I was trying to create a factor that used an ALTREP integer, but att