-
-
Notifications
You must be signed in to change notification settings - Fork 206
Closed
Description
Goal
Review the code in R/bipartite.R and replace all direct _impl function aliases with explicit wrapper functions.
Functions to update:
bipartite_projection_size <- bipartite_projection_size_implbipartite_mapping <- is_bipartite_impl
Instructions
- Review the code to understand the function signatures
- Create explicit wrapper functions that forward to the
_implfunctions - Forward each argument individually and explicitly using
arg = argnotation - Do not use
...unless the_implfunction itself uses...
Pattern
Replace direct aliasing like:
func_name <- func_name_implWith an explicit wrapper:
func_name <- function(arg1, arg2, ...) {
func_name_impl(
arg1 = arg1,
arg2 = arg2,
...
)
}File
R/bipartite.R
Copilot
Metadata
Metadata
Assignees
Labels
No labels