X-Git-Url: http://git.buserror.net/cgi-bin/gitweb.cgi?p=polintos%2Fscott%2Fpriv.git;a=blobdiff_plain;f=include%2Fc%2B%2B%2Fstl%2Fstl%2F_relops_cont.h;fp=include%2Fc%2B%2B%2Fstl%2Fstl%2F_relops_cont.h;h=cd8ec05043507a2b3dcd2f8f76b057e594cb21a8;hp=0000000000000000000000000000000000000000;hb=173d8903eb9d51a4ea7d7fa3e52dc86c9bb6d4f1;hpb=b024710fe2b60cd4a42a8993b61333d6cdb56ca3 diff --git a/include/c++/stl/stl/_relops_cont.h b/include/c++/stl/stl/_relops_cont.h new file mode 100644 index 0000000..cd8ec05 --- /dev/null +++ b/include/c++/stl/stl/_relops_cont.h @@ -0,0 +1,29 @@ +// This is an implementation file which +// is intended to be included multiple times with different _STLP_ASSOCIATIVE_CONTAINER +// setting + +#if !defined (_STLP_EQUAL_OPERATOR_SPECIALIZED) +_STLP_TEMPLATE_HEADER +inline bool _STLP_CALL operator==(const _STLP_TEMPLATE_CONTAINER& __x, + const _STLP_TEMPLATE_CONTAINER& __y) { + return __x.size() == __y.size() && + equal(__x.begin(), __x.end(), __y.begin()); +} +#endif /* _STLP_EQUAL_OPERATOR_SPECIALIZED */ + +_STLP_TEMPLATE_HEADER +inline bool _STLP_CALL operator<(const _STLP_TEMPLATE_CONTAINER& __x, + const _STLP_TEMPLATE_CONTAINER& __y) { + return lexicographical_compare(__x.begin(), __x.end(), + __y.begin(), __y.end()); +} + +_STLP_RELOPS_OPERATORS( _STLP_TEMPLATE_HEADER , _STLP_TEMPLATE_CONTAINER ) + +#if defined (_STLP_FUNCTION_TMPL_PARTIAL_ORDER) +_STLP_TEMPLATE_HEADER +inline void _STLP_CALL swap(_STLP_TEMPLATE_CONTAINER& __x, + _STLP_TEMPLATE_CONTAINER& __y) { + __x.swap(__y); +} +#endif /* _STLP_FUNCTION_TMPL_PARTIAL_ORDER */