hyxos_numerals 0.2.1

A library for working with the hyxos numerals.
Documentation
pub mod constants {
    pub const DIACRITIC_CHARS: [char; 5] = ['t', 's', 'r', 'j', 'w'];
    pub const DIACRITIC_NAME: [&str; 5] = ["ta", "she", "ri", "jo", "wu"];
    pub const DUODECIMALS: [char; 12] =
        ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B'];
    pub const DUODECIMAL_NAME: [&str; 12] = [
        "zo", "zee", "bey", "tree", "kat", "pen", "hyx", "sep", "awk", "nen", "dek", "lev",
    ];
    pub const COLORS: [&str; 5] = ["yellow", "blue", "red", "purple", "green"];
    pub const PLANETS: [&str; 5] = ["Saturn", "Mercury", "Mars", "Venus", "Jupiter"];
    pub const ELEMENTS: [&str; 5] = ["earth", "water", "fire", "metal", "wood"];
    pub const GENERATING_INDECES: [u8; 5] = [2, 4, 1, 3, 0];
    pub const ANIMALS: [&str; 12] = [
        "pig", "rat", "ox", "tiger", "rabbit", "dragon", "snake", "horse", "sheep", "monkey",
        "rooster", "dog",
    ];
    pub const WESTERN_SIGNS: [&str; 12] = [
        "pisces",
        "aries",
        "taurus",
        "gemini",
        "cancer",
        "leo",
        "virgo",
        "libra",
        "scorpio",
        "sagitarius",
        "capricorn",
        "aquarius",
    ];
    pub const ELEMENTS_CN: [&str; 5] = ["", "", "", "", ""];
    pub const EARTHLY_BRANCHES_CN: [&str; 12] = [
        "", "", "", "", "", "", "", "", "", "", "", "",
    ];
    pub const HEAVENLY_STEMS_CN: [&str; 10] =
        ["", "", "", "", "", "", "", "", "", ""];
    pub const ANIMALS_CN: [&str; 12] = [
        "", "", "", "", "", "", "", "", "", "", "", "",
    ];
    pub const POLARITY: [&str; 2] = ["yin", "yang"];
    pub const POLARITY_CN: [&str; 2] = ["", ""];
    pub const POLARITY_LUMINARIES: [&str; 2] = ["Moon", "Sun"];
}