#pragma once #include "ndebug-guard.hpp" #include "make-unique.hpp" #include "run-in-thread.hpp" #include #include #include #include #include #define progn(...) ([&]() { __VA_ARGS__ }()) template using mem = std::shared_ptr; template using ptr = std::unique_ptr; #ifdef Q_CREATOR_RUN # define DEFUN_WARN_UNUSED #elif defined(_MSC_VER) # define DEFUN_WARN_UNUSED _Check_return_ #else # define DEFUN_WARN_UNUSED __attribute__((warn_unused_result)) #endif template int iround(const t& val) { return int(std::round(val)); } namespace util_detail { template inline auto clamp_(n val, n min, n max) -> n { if (val > max) return max; if (val < min) return min; return val; } } template inline auto clamp(const t& val, const u& min, const w& max) -> decltype(val * min * max) { return ::util_detail::clamp_(val, min, max); } template auto qptr(xs... args) { return QSharedPointer(new t(std::forward(args)...)); } template using qshared = QSharedPointer;