EZEmoji

crates.io lastupdated GitHub repo size issuse Lines of Code License Discord Chat

This Project is to make finding Emoji's and Char Groups a bit easier. (WIP) EZEmojis is a Work in progress made for use in **rusty-rain** which is a **CMatrix** clone #### Rusty Rain - [Website](https://rusty-rain.xyz) - [Github](https://github.com/cowboy/rusty-rain) - [Crates.io](https://crates.io/crates/rusty-rain) #### Warning The api may change a lot in the coming updates. ## Example ```rust use ezemoji::{EZEmoji, Crab}; fn main() { println!("{:?}", Crab.as_vec_char()); } ``` The `trait` `EZEmoji` is provided to glue all the types together. You can implement it for your own type like ```rust use ezemoji::EZEmoji; struct MyEmojiGroup; impl EZEmoji for MyEmojiGroup { fn as_vec_u32(&self) -> Vec { vec![96] } } ``` ### HELP If you have any ideas for this crate make an [issue](https://github.com/cowboy8625/ezemoji/issues) and lets talk about it.