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
I wonder if it would be useful to have:
list_along <- function(x) { vector("list", length(x) } rep_along <- function(x, y) { rep(x, length.out = length(y)) }
I find myself reaching for those functions (by analogy to seq_along()) fairly frequently
seq_along()
The text was updated successfully, but these errors were encountered:
Could take multiple arguments and throw an error if they're not the same length?
Sorry, something went wrong.
80c204a
No branches or pull requests
I wonder if it would be useful to have:
I find myself reaching for those functions (by analogy to
seq_along()
) fairly frequentlyThe text was updated successfully, but these errors were encountered: