macro_rules! first {
    ($($rest : tt) *) => { ... };
}
Expand description

Based on first()

More examples:

assert_eq!(first!(), json!(null));
assert_eq!(first!(json!("東京")), json!("東"));