Open danklotz opened 7 years ago
I am not fully convinced, as the new bind function does exactly the same as paste. Its structure is completely the same when calling it.
Regarding the naming; what about tie(), splice(), link(), or noodle() :relaxed:
mh... yeah. Then maybe several functions that come with pre-set collapses? E.g.
tie <- function(x) {
paste(x, collapse = "")
}
bind <- function(x) {
paste(x, collapse = " ")
}
link <- function(x) {
paste(x, collapse = "-")
}
So reducing flexibility for better expression?
more words: strap, bond and my favourine "knot" (like knit, but knot 💃)
The package misses a method to colapse the generated strings. Currently one has to do something like this
So I think we might just wrap
paste(x, collapse = "y")
to a function within pasta, e.g.:We would loose almost nothing if we could find a good name 😀