diff --git a/infra.bs b/infra.bs index f49099f..2524a91 100644 --- a/infra.bs +++ b/infra.bs @@ -663,6 +663,22 @@ interspersed ASCII whitespace.
Return tokens. +
To concatenate a list of +strings list, using an optional separator string separator, run +these steps: + +
If list is empty, then return the empty string. + +
If separator is not given, then set separator to the empty string. + +
Return a string whose contents are list's items, in + order, separated from each other by separator. +
To serialize a set set, return the +concatenation of set using U+0020 SPACE. +