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
How about:
To string concatenate a list list with an optional separator separator, run these steps: If list is empty, then return the empty string. Assert: list only contains strings. If separator is not given, then set separator to the empty string. Assert: separator is a string. Return a string whose contents are list's items, in order, separated from each other by separator.
To string concatenate a list list with an optional separator separator, run these steps:
Needed for whatwg/dom#555 and HTML; possibly other places. (URL concatenates bytes as well, but we don't have generics so...)
cc @Ms2ger
The text was updated successfully, but these errors were encountered:
I'd minorly prefer "a list of strings list with an optional separator string separator" then remove the asserts.
I think you could also just define it as "concatenate" with for=string or similar.
Sorry, something went wrong.
Define string concatenation
8e26da6
Fixes #185.
af5f4d0
No branches or pull requests
How about:
Needed for whatwg/dom#555 and HTML; possibly other places. (URL concatenates bytes as well, but we don't have generics so...)
cc @Ms2ger
The text was updated successfully, but these errors were encountered: