Join creates a redactable string from the given slice of redactable strings, adjoined with the provided delimiter.
(delim RedactableString, s []RedactableString)
| 43 | // given slice of redactable strings, adjoined |
| 44 | // with the provided delimiter. |
| 45 | func Join(delim RedactableString, s []RedactableString) RedactableString { |
| 46 | var b builder.StringBuilder |
| 47 | JoinTo(&b, delim, s) |
| 48 | return b.RedactableString() |
| 49 | } |
| 50 | |
| 51 | // SortStrings sorts the provided slice of redactable strings. |
| 52 | func SortStrings(s []RedactableString) { |