cocoa-purity is a collection of the useful procedural macros.
P.S. named after the beautiful cat Cocoa
```rust use cocoapurity::mapenum;
pub enum Quirk { AbilityToSleep, Nothing, }
pub enum Character { Nero = AbilityToSleep, Custom { name: &'static str } = Nothing }
let nero = Character::Nero; let custom = Character::Custom { name: "Friend" };
let neroquirk: Quirk = nero.into(); let customquirk: Quirk = custom.into();
dbg!(neroquirk, customquirk);
```