mastodon.world is one of the many independent Mastodon servers you can use to participate in the fediverse.
Generic Mastodon server for anyone to use.

Server stats:

8.1K
active users

#codetips

0 posts0 participants0 posts today

Understanding string slicing in #RustLang 🦀:

Remember: slices are based on bytes, not characters! Slicing an ASCII string is different from slicing a multibyte Unicode string. If you slice incorrectly, Rust will panic at runtime. ⚠️

let multibyte_string = "España";
let slice_multibyte = &multibyte_string[..5]; // This will panic! 🚫

Ensure your slices align with valid UTF-8 character boundaries.