xo-object2: + operator==() for DString

This commit is contained in:
Roland Conybeare 2026-01-15 17:23:15 -05:00
commit 05693bd55e

View file

@ -245,6 +245,11 @@ namespace xo {
///@} ///@}
}; };
inline bool operator==(const DString & lhs, const DString & rhs) {
return DString::compare(lhs, rhs) == 0;
}
} /*namespace scm*/ } /*namespace scm*/
} /*namespace xo*/ } /*namespace xo*/