Compare commits

..

1 Commits

Author SHA1 Message Date
David Mak d2eb9255c3 core: Refactor VarMap to IndexMap
This is the only Map I can find that preserves insertion order while
also deduplicating elements by key.
2024-03-21 20:40:05 +08:00
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
use std::cell::RefCell;
use std::collections::{BTreeMap, HashMap};
use std::collections::HashMap;
use std::fmt::Display;
use std::rc::Rc;
use std::sync::{Arc, Mutex};