Get const value from enum handle
```rust use constenummap::{ConstKey,constenummap};
fn item0() -> &'static str { "item0" } fn item1() -> &'static str { "item1" } constenummap! { Foo => fn()->&'static str, Item0 => item0, Item1 => item1 }
fn main() { asserteq!(Foo::Item0.get()(), "item0"); asserteq!(Foo::Item1.get(), Foo::Item1.get()); asserteq!(Foo::valuelist(), Foo::value_list()); } ```
License: MIT