operator < method
Returns true if this phone number is numerically less
than other
Implementation
bool operator <(PhoneNumber rhs) {
return !(this >= rhs);
}
Returns true if this phone number is numerically less
than other
bool operator <(PhoneNumber rhs) {
return !(this >= rhs);
}