2012-12-10 19:32:48 -06: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.
|
|
|
|
|
2013-04-22 23:19:58 -05:00
|
|
|
pub struct Entry<A,B> {
|
|
|
|
key: A,
|
|
|
|
value: B
|
|
|
|
}
|
2013-01-26 00:46:32 -06:00
|
|
|
|
2013-04-22 23:19:58 -05:00
|
|
|
pub struct alist<A,B> {
|
|
|
|
eq_fn: @fn(A,A) -> bool,
|
|
|
|
data: @mut ~[Entry<A,B>]
|
|
|
|
}
|
2012-03-07 17:13:31 -06:00
|
|
|
|
2013-04-22 23:19:58 -05:00
|
|
|
pub fn alist_add<A:Copy,B:Copy>(lst: &alist<A,B>, k: A, v: B) {
|
2013-01-26 00:46:32 -06:00
|
|
|
lst.data.push(Entry{key:k, value:v});
|
2012-03-07 17:13:31 -06:00
|
|
|
}
|
|
|
|
|
2013-04-22 23:19:58 -05:00
|
|
|
pub fn alist_get<A:Copy,B:Copy>(lst: &alist<A,B>, k: A) -> B {
|
2012-03-07 17:13:31 -06:00
|
|
|
let eq_fn = lst.eq_fn;
|
2013-06-21 07:29:53 -05:00
|
|
|
for lst.data.iter().advance |entry| {
|
2013-06-15 19:26:59 -05:00
|
|
|
if eq_fn(copy entry.key, copy k) { return copy entry.value; }
|
2012-03-07 17:13:31 -06:00
|
|
|
}
|
2013-02-11 21:26:38 -06:00
|
|
|
fail!();
|
2012-03-07 17:13:31 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2013-02-20 19:07:17 -06:00
|
|
|
pub fn new_int_alist<B:Copy>() -> alist<int, B> {
|
2013-04-22 23:19:58 -05:00
|
|
|
fn eq_int(a: int, b: int) -> bool { a == b }
|
2013-03-07 20:49:43 -06:00
|
|
|
return alist {eq_fn: eq_int, data: @mut ~[]};
|
2012-03-07 17:13:31 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2013-02-20 19:07:17 -06:00
|
|
|
pub fn new_int_alist_2<B:Copy>() -> alist<int, B> {
|
2012-03-07 17:13:31 -06:00
|
|
|
#[inline]
|
2013-04-22 23:19:58 -05:00
|
|
|
fn eq_int(a: int, b: int) -> bool { a == b }
|
2013-03-07 20:49:43 -06:00
|
|
|
return alist {eq_fn: eq_int, data: @mut ~[]};
|
2012-09-18 17:52:21 -05:00
|
|
|
}
|