Add a method for joining an iterable of &str
s while appending newlines to those that don't already end with one
#7
Labels
enhancement
New feature or request therefor
under consideration
Dev has not yet decided whether or how to implement
Technically, the "iterable of
&str
s" should beI: IntoIterator
,I::Item: AsRef<str>
.Possible parameters (in addition to the iterable):
Newline
, to append to those strings that don't already end with itNewline
and aNewlineSet
; theNewline
is appended to those strings that don't already end with a newline in theNewlineSet
Possible return types:
String
(requiresstd
)std
)Cf. #13
The text was updated successfully, but these errors were encountered: