Why no mutating filter function for strings?

This is probably because strings are immutable. Methods with ! work by modifying the container passed to them, but you can’t modify a string in Julia (for performance reasons).

2 Likes