2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2016-03-07 23:42:29 +00:00
|
|
|
use std::collections::BTreeMap;
|
|
|
|
use std::borrow::Cow;
|
2015-03-22 20:13:15 +00:00
|
|
|
|
2016-03-07 23:42:29 +00:00
|
|
|
use std::borrow::Cow::{Owned as O, Borrowed as B};
|
2015-01-02 07:53:35 +00:00
|
|
|
|
2015-02-12 07:16:32 +00:00
|
|
|
type SendStr = Cow<'static, str>;
|
2013-09-14 17:37:45 +00:00
|
|
|
|
2016-03-07 23:42:29 +00:00
|
|
|
fn main() {
|
2015-03-26 00:06:52 +00:00
|
|
|
let mut map: BTreeMap<SendStr, usize> = BTreeMap::new();
|
2016-03-07 23:42:29 +00:00
|
|
|
assert!(map.insert(B("foo"), 42).is_none());
|
|
|
|
assert!(map.insert(O("foo".to_string()), 42).is_some());
|
|
|
|
assert!(map.insert(B("foo"), 42).is_some());
|
|
|
|
assert!(map.insert(O("foo".to_string()), 42).is_some());
|
2013-09-14 17:37:45 +00:00
|
|
|
|
2016-03-07 23:42:29 +00:00
|
|
|
assert!(map.insert(B("foo"), 43).is_some());
|
|
|
|
assert!(map.insert(O("foo".to_string()), 44).is_some());
|
|
|
|
assert!(map.insert(B("foo"), 45).is_some());
|
|
|
|
assert!(map.insert(O("foo".to_string()), 46).is_some());
|
2013-09-14 17:37:45 +00:00
|
|
|
|
|
|
|
let v = 46;
|
|
|
|
|
2016-03-07 23:42:29 +00:00
|
|
|
assert_eq!(map.get(&O("foo".to_string())), Some(&v));
|
|
|
|
assert_eq!(map.get(&B("foo")), Some(&v));
|
2013-09-14 17:37:45 +00:00
|
|
|
|
|
|
|
let (a, b, c, d) = (50, 51, 52, 53);
|
|
|
|
|
2016-03-07 23:42:29 +00:00
|
|
|
assert!(map.insert(B("abc"), a).is_none());
|
|
|
|
assert!(map.insert(O("bcd".to_string()), b).is_none());
|
|
|
|
assert!(map.insert(B("cde"), c).is_none());
|
|
|
|
assert!(map.insert(O("def".to_string()), d).is_none());
|
2013-09-14 17:37:45 +00:00
|
|
|
|
2016-03-07 23:42:29 +00:00
|
|
|
assert!(map.insert(B("abc"), a).is_some());
|
|
|
|
assert!(map.insert(O("bcd".to_string()), b).is_some());
|
|
|
|
assert!(map.insert(B("cde"), c).is_some());
|
|
|
|
assert!(map.insert(O("def".to_string()), d).is_some());
|
2013-09-14 17:37:45 +00:00
|
|
|
|
2016-03-07 23:42:29 +00:00
|
|
|
assert!(map.insert(O("abc".to_string()), a).is_some());
|
|
|
|
assert!(map.insert(B("bcd"), b).is_some());
|
|
|
|
assert!(map.insert(O("cde".to_string()), c).is_some());
|
|
|
|
assert!(map.insert(B("def"), d).is_some());
|
2013-09-14 17:37:45 +00:00
|
|
|
|
2016-03-07 23:42:29 +00:00
|
|
|
assert_eq!(map.get(&B("abc")), Some(&a));
|
|
|
|
assert_eq!(map.get(&B("bcd")), Some(&b));
|
|
|
|
assert_eq!(map.get(&B("cde")), Some(&c));
|
|
|
|
assert_eq!(map.get(&B("def")), Some(&d));
|
2013-09-14 17:37:45 +00:00
|
|
|
|
2016-03-07 23:42:29 +00:00
|
|
|
assert_eq!(map.get(&O("abc".to_string())), Some(&a));
|
|
|
|
assert_eq!(map.get(&O("bcd".to_string())), Some(&b));
|
|
|
|
assert_eq!(map.get(&O("cde".to_string())), Some(&c));
|
|
|
|
assert_eq!(map.get(&O("def".to_string())), Some(&d));
|
2013-09-14 17:37:45 +00:00
|
|
|
|
2016-03-07 23:42:29 +00:00
|
|
|
assert!(map.remove(&B("foo")).is_some());
|
2014-09-15 03:27:36 +00:00
|
|
|
assert_eq!(map.into_iter().map(|(k, v)| format!("{}{}", k, v))
|
2014-05-22 23:57:53 +00:00
|
|
|
.collect::<Vec<String>>()
|
2013-09-14 17:37:45 +00:00
|
|
|
.concat(),
|
2014-05-25 10:10:11 +00:00
|
|
|
"abc50bcd51cde52def53".to_string());
|
2013-09-14 17:37:45 +00:00
|
|
|
}
|