1
2
3
4
5
6
7
8
9
use crate::AlgebraicValue;
use std::collections::BTreeMap;

/// A map value `AlgebraicValue` → `AlgebraicValue`.
pub type MapValue = BTreeMap<AlgebraicValue, AlgebraicValue>;

impl crate::Value for MapValue {
    type Type = crate::MapType;
}