Ejemplo n.º 1
0
bool operator< (Integer const& a, Integer const& b) {
	return !(a.isGreaterThan(b) || a.isEqualTo(b));
}
Ejemplo n.º 2
0
bool operator!=(Integer const& a, Integer const& b) {
	return !a.isEqualTo(b);
}