pub type Dict<P> = BTreeMap<String, P>;
A dict is a map from strings to a type P
pub struct Dict<P> { /* private fields */ }