veltrix 0.4.0

General utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Emoji constants and lookup helpers.
//!
//! The `emojis` module is generated by `veltrix-codegen`. It exposes a
//! large set of emoji constants (in `constants`) and lookup utilities in
//! `details` such as `ALL`, `by_group`, `find_by_emoji` and `find_by_name`.

pub mod constants;
pub mod details;

pub use constants::*;
pub use details::{
    ALL, CLDR_VERSION, Emoji, UNICODE_EMOJI_VERSION, by_group, by_subgroup, find_by_emoji,
    find_by_name, find_by_search_term,
};