Skip to content

Commit

Permalink
Bring back reexports currently used
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Jan 30, 2022
1 parent dc88b53 commit 5d472ce
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 1 deletion.
7 changes: 7 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ export(arrange_all)
export(arrange_at)
export(arrange_if)
export(as.tbl)
export(as_data_frame)
export(as_label)
export(as_tibble)
export(auto_copy)
Expand Down Expand Up @@ -218,6 +219,7 @@ export(cur_group)
export(cur_group_id)
export(cur_group_rows)
export(current_vars)
export(data_frame)
export(db_analyze)
export(db_begin)
export(db_commit)
Expand Down Expand Up @@ -423,6 +425,7 @@ export(tbl)
export(tbl_df)
export(tbl_nongroup_vars)
export(tbl_ptype)
export(tbl_sum)
export(tbl_vars)
export(tibble)
export(top_frac)
Expand All @@ -433,6 +436,7 @@ export(transmute_all)
export(transmute_at)
export(transmute_if)
export(tribble)
export(type_sum)
export(ungroup)
export(union)
export(union_all)
Expand All @@ -457,11 +461,14 @@ importFrom(methods,is)
importFrom(pillar,format_glimpse)
importFrom(pillar,glimpse)
importFrom(pillar,tbl_sum)
importFrom(pillar,type_sum)
importFrom(stats,lag)
importFrom(stats,setNames)
importFrom(stats,update)
importFrom(tibble,add_row)
importFrom(tibble,as_data_frame)
importFrom(tibble,as_tibble)
importFrom(tibble,data_frame)
importFrom(tibble,is_tibble)
importFrom(tibble,lst)
importFrom(tibble,new_tibble)
Expand Down
20 changes: 20 additions & 0 deletions R/reexport-tibble.r
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# dataframe ---------------------------------------------------------------

#' @importFrom tibble data_frame
#' @export
tibble::data_frame

#' @importFrom tibble as_data_frame
#' @export
tibble::as_data_frame

#' @importFrom tibble lst
#' @export
tibble::lst
Expand All @@ -8,6 +16,12 @@ tibble::lst
#' @export
tibble::add_row

# type_sum ----------------------------------------------------------------

#' @importFrom pillar type_sum
#' @export
pillar::type_sum

# glimpse -----------------------------------------------------------------

#' @importFrom pillar glimpse
Expand All @@ -30,3 +44,9 @@ tibble::as_tibble

#' @importFrom tibble view
tibble::view

# utils -------------------------------------------------------------------

#' @importFrom pillar tbl_sum
#' @export
pillar::tbl_sum
9 changes: 8 additions & 1 deletion man/reexports.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5d472ce

Please sign in to comment.