Skip to content
New issue

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

paste_combine() failing on second vector (n > 3) #52

Closed
jmbarbone opened this issue Nov 1, 2021 · 0 comments · Fixed by #53
Closed

paste_combine() failing on second vector (n > 3) #52

jmbarbone opened this issue Nov 1, 2021 · 0 comments · Fixed by #53
Labels
bug 🐛 Something isn't working

Comments

@jmbarbone
Copy link
Owner

library(mark)
paste_combine(1, 2)
#> [1] "12"
paste_combine(1, 2, 3)
#> [1] "1223"
paste_combine(1, 2, 3, 4)
#> [1] "12234"
paste_combine(1, 2, 3, 4, 5)
#> [1] "122345"

paste_combine(c(1, 1), c(2, 2), c(3, 3))
#>  [1] "1223" "1223" "1223" "1223" "1223" "1223" "1223" "1223" "1223" "1223"
#> [11] "1223" "1223" "1223" "1223" "1223" "1223"

Created on 2021-11-01 by the reprex package (v2.0.1)

@jmbarbone jmbarbone added the bug 🐛 Something isn't working label Nov 1, 2021
jmbarbone pushed a commit that referenced this issue Nov 1, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug 🐛 Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant