ion-shell 1.0.1

The Ion Shell
1
2
3
4
5
6
7
8
9
use smallvec::SmallVec;
use fnv::FnvHashMap;
use smallstring::SmallString;

pub type Array = SmallVec<[Value; 4]>;
pub type Identifier = SmallString;
pub type Value = String;
pub type VariableContext = FnvHashMap<Identifier, Value>;
pub type ArrayVariableContext = FnvHashMap<Identifier, Array>;