Added parallel compilation (#209)

This commit is contained in:
Syrus Akbary
2019-02-25 12:03:48 -08:00
committed by Lachlan Sneff
parent 82eef13f41
commit c5c967da00
5 changed files with 45 additions and 18 deletions

View File

@ -56,6 +56,10 @@ where
pub fn into_boxed_map(self) -> BoxedMap<K, V> {
BoxedMap::new(self.elems.into_boxed_slice())
}
pub fn into_vec(self) -> Vec<V> {
self.elems
}
}
impl<K, V> Map<K, V>