Example #1
0
bool String::operator<=(litstr v) const {
  return not_more(m_px, v);
}
Example #2
0
bool String::operator<=(CVarRef v) const {
  return not_more(m_px, v);
}
Example #3
0
bool String::operator<=(CStrRef v) const {
  return not_more(*this, v);
}