pub const Q_CHANNEL_NAMES_32: [&str; 32];Expand description
Pre-baked "q1".."q32" strings. Hot paths that need to refer to a
q-channel by name (e.g. error messages, evalexpr trait methods that
only take &str) can index into this table instead of paying a
format!("q{}", i) String allocation per call. Reads/writes of
q-channel values themselves should go through MilkContext::q_get_idx
/ MilkContext::q_set_idx which skip name lookup entirely.