I believe you make an extension on a [String]
like this...
extension Sequence where Iterator.Element == String {
Say I want to mutate the array - I mean to say, change each of the strings in the array. How to do?
extension Sequence where Iterator.Element == String {
func yoIzer() {
for s in self { s = "yo " + s }
}
}
That does not work.
(That's just an example, more complex processing may be required: you may wanna avoid just using a filter.)
A Sequence is not mutable, and in any case changing the element
s
would not change anything about the Sequence it comes from (s
is a copy).What you are trying to say is this:
And here's a test:
That approach actually comes straight out of the Swift docs.