//! Token newtype.
/// A single vocabulary token id (newtype over ik_llama.cpp's `llama_token` = `i32`).
///
/// `#[repr(transparent)]` guarantees identical layout to `llama_token`, so
/// `*const llama_token` ↔ `*const LlamaToken` casts (e.g. in mtmd `text_tokens`)
/// are sound.
;