summaryrefslogtreecommitdiffstats
path: root/src/corelib/global/qxptype_traits.h
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@kdab.com>2019-12-13 19:32:06 +0100
committerFabian Kosmale <fabian.kosmale@qt.io>2022-11-30 18:01:46 +0100
commit29e0cca0ed5b43972e6e78900611fa39802cce0c (patch)
tree9d1cbea30a8f8b05c772194b79be2d9d977a194a /src/corelib/global/qxptype_traits.h
parentd47061f62f9bbaafd1aa5b61fb4b7707b6057f7e (diff)
Short live the Qt implementation of the Detection Idiom
These never made it into the IS, but are still available in the Library Fundamentals TSs. Use them to simplify detection code in qcontainertools_impl.h. Change-Id: Iee83bc93c2abca34446d31912a2e04f6e3fe71de Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/corelib/global/qxptype_traits.h')
-rw-r--r--src/corelib/global/qxptype_traits.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/src/corelib/global/qxptype_traits.h b/src/corelib/global/qxptype_traits.h
new file mode 100644
index 0000000000..7da0478583
--- /dev/null
+++ b/src/corelib/global/qxptype_traits.h
@@ -0,0 +1,63 @@
+// Copyright (C) 2020 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Marc Mutz <marc.mutz@kdab.com>
+// Copyright (C) 2022 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+#ifndef QXPTYPE_TRAITS_H
+#define QXPTYPE_TRAITS_H
+
+#include <QtCore/qtconfigmacros.h>
+
+#include <type_traits>
+
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. Types and functions defined in this
+// file can reliably be replaced by their std counterparts, once available.
+// You may use these definitions in your own code, but be aware that we
+// will remove them once Qt depends on the C++ version that supports
+// them in namespace std. There will be NO deprecation warning, the
+// definitions will JUST go away.
+//
+// If you can't agree to these terms, don't use these definitions!
+//
+// We mean it.
+//
+
+QT_BEGIN_NAMESPACE
+
+// like std::experimental::{nonesuch,is_detected/_v}(LFTSv2)
+namespace qxp {
+
+struct nonesuch {
+ ~nonesuch() = delete;
+ nonesuch(const nonesuch&) = delete;
+ void operator=(const nonesuch&) = delete;
+};
+
+namespace _detail {
+ template <typename T, typename Void, template <typename...> class Op, typename...Args>
+ struct detector {
+ using value_t = std::false_type;
+ using type = T;
+ };
+ template <typename T, template <typename...> class Op, typename...Args>
+ struct detector<T, std::void_t<Op<Args...>>, Op, Args...> {
+ using value_t = std::true_type;
+ using type = Op<Args...>;
+ };
+} // namespace _detail
+
+template <template <typename...> class Op, typename...Args>
+using is_detected = typename _detail::detector<qxp::nonesuch, void, Op, Args...>::value_t;
+
+template <template <typename...> class Op, typename...Args>
+constexpr inline bool is_detected_v = is_detected<Op, Args...>::value;
+
+} // namespace qxp
+
+QT_END_NAMESPACE
+
+#endif // QXPTYPE_TRAITS_H
+