aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorMarco Bubke <marco.bubke@qt.io>2020-05-25 18:17:00 +0200
committerTim Jenssen <tim.jenssen@qt.io>2020-05-26 18:15:06 +0200
commitb3f8a4a73cfd5c12e577359ea378fa8a75955230 (patch)
tree9e08456df15cd07749ee8f3d348e852e71091994 /README.md
parent9f5c1184eab0d887107ec7d9553869fbd7289c1f (diff)
Utils: Include from future std::span
std::span is a universal class to represent a non owning contiguous data. You can even manipulate the data but you can not change the size like sort. It's very nice for interfaces which call in other code but don't need to own the container or make an internal copy anyway. https: //en.cppreference.com/w/cpp/container/span https: //solarianprogrammer.com/2019/11/03/cpp-20-span-tutorial/ Change-Id: Iaced1bd60c14b2fd7ea6576bb6e1720ed8990da8 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/README.md b/README.md
index 896d2e8b71..0a4ef8a818 100644
--- a/README.md
+++ b/README.md
@@ -439,6 +439,17 @@ we thank the authors who made this possible:
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
+### Implementation for std::span
+
+ https://github.com/tcbrindle/span
+
+ QtCreator/src/libs/3rdparty/span
+
+ Copyright Tristan Brindle, 2018
+
+ Distributed under the Boost Software License, Version 1.0.
+ (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
+
### Open Source front-end for C++ (license MIT), enhanced for use in Qt Creator
Roberto Raggi <roberto.raggi@gmail.com>