1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # Pronoun
//!
//! Examples:
//!
//! ```rust
//! # use ::typeables::pronoun::*;
//! let x = PronounAsStructStr("they"); // people
//! let x = PronounAsStructStr("those"); // things
//! ```
//!
//! <https://wikipedia.org/wiki/Pronoun>

pub struct PronounAsStructStr(pub &'static str);
pub struct PronounAsStructString(pub String);

pub type PronounAsTypeStr = str;
pub type PronounAsTypeString = String;