itsy 0.4.0

Strongly typed scripting language with a rusty syntax and nice Rust integration.
Documentation
1
2
3
4
5
6
7
8
9
10
pub use std::collections::BTreeMap as Map;
pub use std::collections::BTreeSet as Set;
pub use std::collections::HashMap as UnorderedMap;
pub use std::collections::HashSet as UnorderedSet;
pub use std::hash::{Hash, Hasher};
pub use std::mem::{size_of, size_of_val, replace, discriminant};
pub use std::cmp::{Ordering, min};
pub use std::fmt::{self, Display, Debug};
pub use std::marker::PhantomData;
pub use std::ops::{Add, Index, IndexMut, Deref};