R6 icon indicating copy to clipboard operation
R6 copied to clipboard

Encapsulated object-oriented programming for R

Results 53 R6 issues
Sort by recently updated
recently updated
newest added

The `prompt()` function in `utils` is a generic, so it would be possible to write a `prompt.R6ClassGenerator` method that generates a skeleton Rd page something like what Roxygen generates (but...

The debugging vignette says RStudio debugging doesn't work with R6 methods. A step towards this would be to allow breakpoints to be set in methods by location, similar to the...

Hi, Here is a short reprex to illustrate my problem: ``` library(R6) Family

Would be definitively helpful for me sometimes. I didn't change the first part of the error message because I was afraid people might regexp-test against it (although unlikely). If you...

Fixes https://github.com/wch/R6/issues/99

I think this counts as a feature request, unless there's a simple pattern that exists to achieve the desired result that I haven't yet stumbled upon. I've found some instances...

I just figured out that it's not possible to override a field with a method in a subclass. Paradoxically, the opposite direction works. Maybe this is the desired behavior or...

feature

I already [commented on this](https://github.com/r-lib/R6/issues/110#issuecomment-461114660) in #110, but I'd like to get an "official" opinion on this (and I could make a PR if this is something desirable). Currently it...

feature

I'm not sure if this is an Issue (capital I), but I also can't find a good pattern here for when I embed a Shiny observer inside an R6 object....

The R parser has a number of reserved words mentioned in the [manual](https://stat.ethz.ch/R-manual/R-devel/library/base/html/Reserved.html). Is there a similar list for R6? I ask because I am generating an R client library...