endoli / message-format.rs

A MessageFormat implementation for Rust.
https://endoli.github.io/message-format.rs/
Apache License 2.0
12 stars 7 forks source link

Remove HashMaps #4

Closed waywardmonkeys closed 7 years ago

waywardmonkeys commented 8 years ago

The use of HashMap isn't necessary as the number of items in these will usually be quite low, so we can just use a Vec of entries instead and do a quick linear search.