Slices and Strings with Rust: Goodbye C# StringBuilder?
When you’ve spent years writing C#, you get really comfortable with string being immutable, Span
And then you start learning Rust.
Suddenly, String isn’t immutable. &str looks suspiciously like a Span
Today on Day 12, I dove into slices and strings in Rust, and let me tell you, it’s a whole new world, but a surprisingly elegant one.