Merge remote-tracking branch 'erickt/master'

Conflicts:
	src/libcore/vec.rs
	src/libstd/getopts.rs
This commit is contained in:
Brian Anderson 2012-02-05 15:15:21 -08:00
commit 91b6dc5c8e
8 changed files with 458 additions and 30 deletions

View file

@ -95,6 +95,7 @@ iface map<K: copy, V: copy> {
Iterate over all the keys in the map
*/
fn keys(fn(K));
/*
Iterate over all the values in the map
*/
@ -631,4 +632,4 @@ mod tests {
map.insert(key, "val");
assert (option::get(map.find(key)) == "val");
}
}
}