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

If possible, it would be great if this error told me which names R6 thinks are *not* unique. ``` > devtools::load_all(".") ℹ Loading gargle Error in `load_all()`: ! Failed to...

Hi, I took the comment from https://github.com/r-lib/R6/issues/179#issuecomment-464099279 by @wch and implemented it, adapting contributions from @mb706. I added tests and documentation. Each commit is self-contained and backwards compatibility should be...

I have a base class with a initialize function. What I'd like to do is for that initialize function to create and return a child class ( a class that...