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
#' @description write_r4_mthds() is a Write function that writes a file to a specified local directory. Specifically, this function implements an algorithm to write ready4 s4 methods. The function returns Written files (a list of lists).
106
+
#' @description write_r4_mthds() is a Write function that writes a file to a specified local directory. Specifically, this function implements an algorithm to write ready4 s4 methods. The function returns a S4 methods (a list).
107
107
#' @param fns_dir_1L_chr Functions directory (a character vector of length one), Default: 'data-raw/s4_fns'
108
108
#' @param fn_types_lup Function types (a lookup table), Default: NULL
109
109
#' @param import_from_chr Import from (a character vector), Default: character(0)
110
110
#' @param output_dir_1L_chr Output directory (a character vector of length one), Default: 'R'
111
111
#' @param pkg_nm_1L_chr Package name (a character vector of length one), Default: character(0)
fn_desc_chr<- rep(paste0(fn_name_1L_chr, " method applied to ",
137
137
class_nm_1L_chr), 2)
138
138
fn_outp_type_1L_chr<-""
@@ -147,7 +147,7 @@ write_r4_mthds <- function (fns_dir_1L_chr = "data-raw/s4_fns", fn_types_lup = N
147
147
else {
148
148
written_files_ls_ls<-NULL
149
149
}
150
-
return(written_files_ls_ls)
150
+
return(s4_mthds_ls)
151
151
}
152
152
#' Write script to make generic
153
153
#' @description write_script_to_make_gnrc() is a Write function that writes a file to a specified local directory. Specifically, this function implements an algorithm to write script to make generic. The function is called for its side effects and does not return a value. WARNING: This function writes R scripts to your local environment. Make sure to only use if you want this behaviour
0 commit comments