1
2
3
4
5
6
7
8
//! Provides a hashmap of String-NativeValue

use super::nativeval::NativeValue;
use super::string::HaruString;
use hashbrown::HashMap;

/// A hashmap of String-NativeValue
pub type HaruHashMap = HashMap<HaruString, NativeValue>;