1 个不稳定版本

使用旧 Rust 2015

0.1.0 2018年2月23日

#16 in #不可变

MIT 许可证

9KB
209

rs-immut_string

不可变字符串

extern crate immut_string;

use immut_string::ImmutString;

fn main() {
  let a: ImmutString = "Hello".into();
  let b = ImmutString::from(", world!");
  let c = a + b;

  assert_eq!(c, "Hello, world!");
  assert_eq!(c.len(), 13);
}

无运行时依赖