type InnerP<T> = Arc;
type InnerP<T> = Rc;
/// This type is a quick hack to paper over a mistake where apparently I exposed
/// Arc vs Rc based on a cfg(feature = "arc") setting. It was very easy to write
/// code that breaks when that feature changes, so now there's a hacky/minimal
/// wrapper.
///
/// Don't ask me about the 1-char name, I wrote this like a year ago.
;
pub