MutStr MutStr is a mutable alternative for &str.
MutStr
&str
String
use mutstr::mutstr; let mut result = mutstr::from("friend"); // Create result += " :) :) :)"; // Add result -= (2, " :)"); // Remove(2 times) assert_eq!(result.as_str(), "friend :)");