Crates.io | label_attribute |
lib.rs | label_attribute |
version | 0.1.1 |
source | src |
created_at | 2019-06-09 19:58:48.670838 |
updated_at | 2019-06-09 22:58:59.664073 |
description | Procedural attribute macro for lhlist |
homepage | |
repository | https://github.com/agnes-rs/lhlist |
max_upload_size | |
id | 140040 |
size | 8,642 |
lhlist
lhlist
is a library for Labeled Hetergogeneous Lists.
This library provides data structures and macros for creating and accessing lists of differently-typed objects that each have their own unique label.
For more details, see the documentation.
Add lhlist
to you Cargo.toml
:
[dependencies]
lhlist = "0.1"
And use it is as such:
#[macro_use] extern crate lhlist;
use lhlist::Label;
new_label![SomeNumbers: Vec<u64>];
new_label![SomeNames: Vec<&'static str>];
new_label![Flag: bool];
let my_list = lhlist![
SomeNumbers = vec![0, 4, 5, 2],
SomeNames = vec!["hello", "world!"],
Flag = false,
];
assert_eq!(my_list[SomeNumbers], vec![0, 4, 5, 2]);
assert_eq!(my_list[Flag], false);
This project is licensed under the MIT license.