vote up 5 vote down star
1

Given two identical boost::variant types a and b, the expression ( a == b ) is permitted.

However ( a != b ) seems to be undefined. Why is this?

flag

3 Answers

vote up 3 vote down check

I think it's just not added to the library. The Boost.Operators won't really help, because either variant would have been derived from boost::operator::equality_comparable. David Pierre is right to say you can use that, but your response is correct too, that the new operator!= won't be found by ADL, so you'll need a using operator.

I'd ask this on the boost-users mailing list.

link|flag
vote up 1 vote down

Because it doesn't need to.

Boost has an operators library which defines operator!= in term of operator==

link|flag
I could be wrong. But if variant uses the operators library, doesn't that mean that a != b should work? I think what he wants is using std::rel_ops instead: { using std::rel_ops::operator!=; getA() != getB(); } – Johannes Schaub - litb Jun 25 at 15:24
I didn't meant to say variant is using the lib itself, but that you can do it yourself to inject operator!= – David Pierre Jun 25 at 15:49
So the expectation is to include an additional header and add a using declaration in source files where != is desired? – Shmoopty Jun 25 at 17:05
vote up -1 vote down

(!(a == b)) == (a != b)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.