Skip to content

Commit

Permalink
Redocument with CRAN roxygen2
Browse files Browse the repository at this point in the history
Add missing export tag noted by roxygen2
  • Loading branch information
DavisVaughan committed Aug 27, 2024
1 parent 920903d commit cf0e08b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ Config/testthat/parallel: true
Encoding: UTF-8
Language: en-GB
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3
RoxygenNote: 7.3.2
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ S3method(cnd_header,vctrs_error_subscript_type)
S3method(diff,vctrs_vctr)
S3method(duplicated,vctrs_sclr)
S3method(duplicated,vctrs_vctr)
S3method(format,hidden)
S3method(format,vctrs_bytes)
S3method(format,vctrs_group_rle)
S3method(format,vctrs_list_of)
Expand Down
2 changes: 2 additions & 0 deletions R/type-vctr.R
Original file line number Diff line number Diff line change
Expand Up @@ -750,6 +750,8 @@ new_hidden <- function(x = double()) {
stopifnot(is.numeric(x))
new_vctr(vec_cast(x, double()), class = "hidden", inherit_base_type = FALSE)
}

#' @export
format.hidden <- function(x, ...) rep("xxx", length(x))

local_hidden <- function(frame = caller_env()) {
Expand Down
9 changes: 5 additions & 4 deletions man/howto-faq-coercion-data-frame.Rd

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

0 comments on commit cf0e08b

Please sign in to comment.