collection_macros/
lib.rs

1#![doc(html_root_url = "https://pwoolcoc.github.io/collection_macros/")]
2
3//! Collection Macros
4//! 
5//! A collection of macros to construct collections with minimal syntax
6
7#[macro_use] mod hashmap;
8#[macro_use] mod btreemap;
9#[macro_use] mod hashset;