tnil 0.1.3

Parsing, glossing, and generating utilites for New Ithkuil
Documentation
//! A prelude containing common types and traits used in this crate.

pub use crate::{
    category::Category,
    gloss::{Gloss, GlossFlags, GlossHelpers, GlossStatic},
    romanize::{
        flags::{FromTokenFlags, IntoTokensFlags},
        stream::ParseError,
        token,
        token_list::TokenList,
        traits::{FromToken, FromTokens, IntoToken, IntoTokens},
    },
    script::{
        character::{self, Character},
        flags::IntoScriptFlags,
        traits::{IntoScript, ScriptRepr},
    },
    specificity::{AsGeneral, AsSpecific, TryAsGeneral, TryAsSpecific},
    word::{self, Word},
};