R icon indicating copy to clipboard operation
R copied to clipboard

An experimental reimagining of R

Results 87 R issues
Sort by recently updated
recently updated
newest added

This is my suggestion for how to make some progress on https://github.com/dgkf/R/issues/105 This is definitely WIP that needs cleaning up and also contains some other code that needs to be...

One way to make this project accessible to people that do not (yet) know how to write rust code, would be to give a possibility to contribute to the project...

For now this is just a placeholder PR so that I don't lose some code I wrote up on the train a while back. Once things are properly working I'll...

Currently, the `...` is contained in the evaluation environment of functions: ```r > names((fn() environment())()) [1] "..." > ``` vs. R's behavior: ```r > names((function() environment())()) character(0) ```

This is a meta-issue to cover a few different discussions on mutability patterns. #112 and https://github.com/dgkf/R/pull/123#discussion_r1558402942 have me feeling like now might be a good time to think more holistically...

theme-internals
meta-proposal
meta-discussion

The current character representation defines a character element as ```rust pub type Character = OptionNA; ``` To my understanding, this makes it rather difficult to iterate over references (i.e. iterators...

theme-internals
type-design
meta-discussion

```r f

type-bug
meta-good first issue
theme-internals

This is R's behavior: ```r > x x NULL ``` This the behavior in the re-implementation: ```r > x x [1] 10 > ``` I guess nobody uses the return...

type-design
meta-discussion

I think it might be a good idea to have some place where relevant resources can be shared with others. (e.g. something like: https://github.com/HenrikBengtsson/Wishlist-for-R). Maybe a Wiki for the project...

meta-discussion

Because `[[` can be used with a single number like `1` and `[` with a vector like `[1]`, it is not clear what the expression `x[[1]]` represents, i.e. does it...

type-enhancement
theme-internals
type-design