bool String::operator<=(litstr v) const { return not_more(m_px, v); }
bool String::operator<=(CVarRef v) const { return not_more(m_px, v); }
bool String::operator<=(CStrRef v) const { return not_more(*this, v); }