#pragma once #include "fwd.h" #include #include #include #include #include template class TSet: public std::set> { public: using TBase = std::set>; using TBase::TBase; inline explicit operator bool() const noexcept { return !this->empty(); } }; template class TMultiSet: public std::multiset> { public: using TBase = std::multiset>; using TBase::TBase; inline explicit operator bool() const noexcept { return !this->empty(); } };