We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
> library(hms) > format(hms()) [1] "hms()"
This was surprising to me; I think in general the contract for format() is that it produces a character vector of the same length as its input.
format()
The text was updated successfully, but these errors were encountered:
Thanks. Indeed, this seems true in the vctrs ecosystem (but not for data frames).
format(vctrs::new_list_of()) #> character(0) format(vctrs::new_vctr(integer())) #> character(0) dput(format(data.frame())) #> structure(list(), names = character(0), row.names = integer(0), class = "data.frame")
Created on 2025-01-31 with reprex v2.1.1
Need to assess the impact on the downstream dependencies.
Sorry, something went wrong.
No branches or pull requests
This was surprising to me; I think in general the contract for
format()
is that it produces a character vector of the same length as its input.The text was updated successfully, but these errors were encountered: