Example #1
0
	inline bool operator==(const Tuple &l, const tOther &r)
	{
		return l.equal(r);
	}
Example #2
0
	inline bool operator!=(const tOther &r, const Tuple &l)
	{
		return !l.equal(r);
	}
Example #3
0
	inline bool operator!=(const Tuple &l, const Tuple &r)
	{
		return !l.equal(r);
	}