Skip to content

Commit

Permalink
Very minor internal update.
Browse files Browse the repository at this point in the history
  • Loading branch information
NicChr committed Mar 22, 2024
1 parent 2616390 commit 8b9ef87
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ allv2 <- function(x, value){
list_as_df <- cpp_list_as_df

df_as_tbl <- function(x){
class(x) <- c("tbl_df", "tbl", "data.frame")
x
out <- list_as_df(x)
class(out) <- c("tbl_df", "tbl", "data.frame")
out
}
as.character.vctrs_rcrd <- function(x, ...){
format(x, ...)
Expand Down

0 comments on commit 8b9ef87

Please sign in to comment.