|
swift
|
CRTP class template from which a derived class can inherit operator== implemented using its compare function. More...
Friends | |
| bool | operator== (const Derived &a, const Derived &b) |
| Equals. | |
| bool | operator!= (const Derived &a, const Derived &b) |
| Not equal. | |
CRTP class template from which a derived class can inherit operator== implemented using its compare function.
| Derived | Must overload a function bool compare(const Derived &, const Derived &) which can be found by ADL. |
Definition at line 31 of file mixincompare.h.