rust/src/libcollections
bors 16ff9e22cd Auto merge of #36347 - knight42:str-replacen, r=alexcrichton
Implement std::str::replacen

Replaces first N matches of a pattern with another string.

```
assert_eq!("acaaa".replacen(a, "b", 3), "bcbba")
```
2016-09-14 20:29:15 -07:00
..
2016-09-13 10:13:52 +05:30
2016-08-18 12:16:29 -04:00
2016-08-23 10:49:11 -04:00
2016-09-13 10:16:31 +08:00