2013-09-14 19:37:45 +02:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-05-29 19:03:06 -07:00
|
|
|
use std::collections::HashMap;
|
2016-03-07 15:42:29 -08:00
|
|
|
use std::borrow::Cow;
|
|
|
|
|
|
|
|
use std::borrow::Cow::Borrowed as B;
|
|
|
|
use std::borrow::Cow::Owned as O;
|
2015-01-01 23:53:35 -08:00
|
|
|
|
2015-02-11 23:16:32 -08:00
|
|
|
type SendStr = Cow<'static, str>;
|
2013-09-14 19:37:45 +02:00
|
|
|
|
2016-03-07 15:42:29 -08:00
|
|
|
fn main() {
|
2015-03-25 17:06:52 -07:00
|
|
|
let mut map: HashMap<SendStr, usize> = HashMap::new();
|
2016-03-07 15:42:29 -08: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 19:37:45 +02:00
|
|
|
|
2016-03-07 15:42:29 -08: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 19:37:45 +02:00
|
|
|
|
|
|
|
let v = 46;
|
|
|
|
|
2016-03-07 15:42:29 -08:00
|
|
|
assert_eq!(map.get(&O("foo".to_string())), Some(&v));
|
|
|
|
assert_eq!(map.get(&B("foo")), Some(&v));
|
2013-09-14 19:37:45 +02:00
|
|
|
|
|
|
|
let (a, b, c, d) = (50, 51, 52, 53);
|
|
|
|
|
2016-03-07 15:42:29 -08: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());
|
2014-11-21 17:10:42 -05:00
|
|
|
|
2016-03-07 15:42:29 -08: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());
|
2014-11-21 17:10:42 -05:00
|
|
|
|
2016-03-07 15:42:29 -08: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());
|
2014-11-21 17:10:42 -05:00
|
|
|
|
|
|
|
assert_eq!(map.get("abc"), Some(&a));
|
|
|
|
assert_eq!(map.get("bcd"), Some(&b));
|
|
|
|
assert_eq!(map.get("cde"), Some(&c));
|
|
|
|
assert_eq!(map.get("def"), Some(&d));
|
|
|
|
|
2016-03-07 15:42:29 -08: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 19:37:45 +02:00
|
|
|
}
|