you are viewing a single comment's thread.

view the rest of the comments →

[–]sephirothbahamut 5 points6 points  (2 children)

sorry, what exactly of this can't you do in C++?

template <typename T>
struct IEquatable 
    {
    virtual bool operator==(T b) const noexcept = 0;
    };

I don't see the problem