airlang 0.26.0

Air is a minimalist and universal programming language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::semantics::val::Val;
use crate::trait_::derive::derive_debug;
use crate::trait_::derive::derive_display;
use crate::type_::Key;
use crate::type_::Map;
use crate::type_::wrap::box_wrap;

box_wrap!(pub MapVal(Map<Key, Val>));

derive_debug!(MapVal(Map<Key, Val>));

derive_display!(MapVal(Map<Key, Val>));