Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions R/map.R
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ map_bfs_back_dbl <- function(root, mode = 'out', unreachable = FALSE, .f, ...) {
#' * `rank_out`: The rank of the completion of the nodes subtree
#' * `parent`: The index of the node that led to the current node
#' * `dist`: The distance of the current node from the root
#' * `path`: A table containing `node`, `rank`, `rank_out`, `parent`, dist`, and
#' * `path`: A table containing `node`, `rank`, `rank_out`, `parent`, `dist`, and
#' `result` columns giving the values for each node leading to the
#' current node. The `result` column will contain the result of the mapping
#' of each node in a list.
Expand Down Expand Up @@ -276,7 +276,7 @@ map_dfs_dbl <- function(root, mode = 'out', unreachable = FALSE, .f, ...) {
#' * `rank_out`: The rank of the completion of the nodes subtree
#' * `parent`: The index of the node that led to the current node
#' * `dist`: The distance of the current node from the root
#' * `path`: A table containing `node`, `rank`, `rank_out`, `parent`, dist`, and
#' * `path`: A table containing `node`, `rank`, `rank_out`, `parent`, `dist`, and
#' `result` columns giving the values for each node reached from
#' the current node. The `result` column will contain the result of the mapping
#' of each node in a list.
Expand Down