You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.Rmd
+1-1
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ knitr::opts_chunk$set(
17
17
18
18
<!-- badges: start -->
19
19
20
-
[](https://lifecycle.r-lib.org/articles/stages.html#experimental)[](https://github.com/RConsortium/OOP-WG/actions/workflows/R-CMD-check.yaml)[](https://app.codecov.io/gh/RConsortium/OOP-WG?branch=main)
20
+
[](https://lifecycle.r-lib.org/articles/stages.html#experimental)[](https://github.com/RConsortium/S7/actions/workflows/R-CMD-check.yaml)[](https://app.codecov.io/gh/RConsortium/S7?branch=main)
Copy file name to clipboardexpand all lines: vignettes/minutes/2021-05-18.Rmd
+1-1
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ title: "Minutes 2021-05-18"
8
8
9
9
### Process (ML)
10
10
11
-
- Active discussion in GitHub issues: <https://github.com/RConsortium/OOP-WG>
11
+
- Active discussion in GitHub issues: <https://github.com/RConsortium/S7>
12
12
13
13
- Need a little process to finalise discussion. Proposal: original author reads discussion, summarises, and creates a pull request that closes the issue. Any participants in the discussion should be added as reviewers.
- Abstract classes? <https://github.com/RConsortium/OOP-WG/issues/199>. Easy to implement but is it worth it?
33
-
- What should we call the S7 equivalent of inherits? <https://github.com/RConsortium/OOP-WG/issues/193> --- call it `S7_inherits()` for now; will eventually just be part of inherits. Propose generic extension mechanism for inherits.
- Abstract classes? <https://github.com/RConsortium/S7/issues/199>. Easy to implement but is it worth it?
33
+
- What should we call the S7 equivalent of inherits? <https://github.com/RConsortium/S7/issues/193> --- call it `S7_inherits()` for now; will eventually just be part of inherits. Propose generic extension mechanism for inherits.
Copy file name to clipboardexpand all lines: vignettes/packages.Rmd
+3-3
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ knitr::opts_chunk$set(
16
16
17
17
This vignette outlines the most important things you need to know about using S7 in a package.
18
18
S7 is new, so few people have used it in a package yet; this means that this vignette is likely incomplete, and we'd love your help to make it better.
19
-
Please [let us know](https://github.com/RConsortium/OOP-WG/issues/new) if you have questions that this vignette doesn't answer.
19
+
Please [let us know](https://github.com/RConsortium/S7/issues/new) if you have questions that this vignette doesn't answer.
20
20
21
21
```{r setup}
22
22
library(S7)
@@ -46,11 +46,11 @@ If you export a class, you must also set the `package` argument, ensuring that c
46
46
You should document generics like regular functions (since they are!).
47
47
If you expect others to create their own methods for your generic, you may want to include an section describing the the properties that you expect all methods to have.
48
48
We plan to provide a an easy way to all methods for a generic, but have not yet implemented it.
49
-
You can track progress at <https://github.com/RConsortium/OOP-WG/issues/167>.
49
+
You can track progress at <https://github.com/RConsortium/S7/issues/167>.
50
50
51
51
We don't currently have any recommendations on documenting methods.
52
52
There's no need to document them in order to pass `R CMD check`, but obviously there are cases where it's nice to provide additional details for a method, particularly if it takes extra arguments compared to the generic.
53
-
We're tracking that issue at <https://github.com/RConsortium/OOP-WG/issues/315>.
53
+
We're tracking that issue at <https://github.com/RConsortium/S7/issues/315>.
0 commit comments