Skip to content

Commit 6bab2f4

Browse files
committed
lint(CHECK): explicitly list some args in [<-, [[<-, $<- impls
1 parent f58a174 commit 6bab2f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

R/methods-epi_df.R

+3-3
Original file line numberDiff line numberDiff line change
@@ -234,21 +234,21 @@ reconstruct_light_edf <- function(data, template) {
234234
}
235235

236236
#' @export
237-
`[<-.epi_df` <- function(x, ...) {
237+
`[<-.epi_df` <- function(x, i, j, ..., value) {
238238
res <- NextMethod()
239239

240240
reconstruct_light_edf(res, x)
241241
}
242242

243243
#' @export
244-
`[[<-.epi_df` <- function(x, ...) {
244+
`[[<-.epi_df` <- function(x, i, j, ..., value) {
245245
res <- NextMethod()
246246

247247
reconstruct_light_edf(res, x)
248248
}
249249

250250
#' @export
251-
`$<-.epi_df` <- function(x, ...) {
251+
`$<-.epi_df` <- function(x, name, value) {
252252
res <- NextMethod()
253253

254254
reconstruct_light_edf(res, x)

0 commit comments

Comments
 (0)