[go: up one dir, main page]

common_macros 0.0.1-wip

Provides common macros like `hash_map!` or `hash_set!` (WIP)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! This library will contains common macros.
//!
//! Mainly following macros:
//!
//! - `hash_map!`,
//! - `hash_set!`,
//! - `b_tree_map!`,
//! - `b_tree_set!`,
//! - `expr_count!`
//! - `insert!` (generalization of map/set/vec insertion)
//!
//! I'm not sure if I will add common alt. assertion macros
//! (e.g. `assert_ok!`, `assert_err!`, `assert_iter_eq!`).