2012-12-10 17:32:48 -08:00
|
|
|
// Copyright 2012 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.
|
|
|
|
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2015-01-08 02:25:56 +01:00
|
|
|
#![allow(unknown_features)]
|
|
|
|
#![feature(box_syntax)]
|
|
|
|
|
2015-03-30 09:38:27 -04:00
|
|
|
#[derive(Copy, Clone)]
|
2015-03-25 17:06:52 -07:00
|
|
|
struct LM { resize_at: usize, size: usize }
|
2013-01-25 22:46:32 -08:00
|
|
|
|
2013-04-03 09:28:36 -04:00
|
|
|
enum HashMap<K,V> {
|
2015-02-12 10:29:52 -05:00
|
|
|
HashMap_(LM, Vec<(K,V)>)
|
2012-08-21 19:51:43 -07:00
|
|
|
}
|
|
|
|
|
2013-04-03 09:28:36 -04:00
|
|
|
fn linear_map<K,V>() -> HashMap<K,V> {
|
2014-11-06 00:05:53 -08:00
|
|
|
HashMap::HashMap_(LM{
|
2012-08-21 19:51:43 -07:00
|
|
|
resize_at: 32,
|
2015-02-12 10:29:52 -05:00
|
|
|
size: 0}, Vec::new())
|
2012-08-21 19:51:43 -07:00
|
|
|
}
|
|
|
|
|
2013-05-31 15:17:22 -07:00
|
|
|
impl<K,V> HashMap<K,V> {
|
2015-03-25 17:06:52 -07:00
|
|
|
pub fn len(&mut self) -> usize {
|
2013-10-31 15:29:15 -07:00
|
|
|
match *self {
|
2015-02-12 10:29:52 -05:00
|
|
|
HashMap::HashMap_(ref l, _) => l.size
|
2013-10-31 15:29:15 -07:00
|
|
|
}
|
2012-08-21 19:51:43 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {
|
2015-02-17 21:41:32 +01:00
|
|
|
let mut m: Box<_> = box linear_map::<(),()>();
|
2013-05-18 22:02:45 -04:00
|
|
|
assert_eq!(m.len(), 0);
|
2012-08-21 19:51:43 -07:00
|
|
|
}
|