aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/include
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2022-11-21 14:12:52 +0000
committerJonathan Wakely <jwakely@redhat.com>2024-03-18 13:50:57 +0000
commit819d63e09950cff6761c2427ead4266b7838e5ea (patch)
tree5b7c2112879da4137e27022f1e0ddeff308ec399 /libstdc++-v3/include
parent7abc86119e4ebb13d3fffc7e2b038e2629aa2fc1 (diff)
downloadgcc-819d63e09950cff6761c2427ead4266b7838e5ea.zip
gcc-819d63e09950cff6761c2427ead4266b7838e5ea.tar.gz
gcc-819d63e09950cff6761c2427ead4266b7838e5ea.tar.bz2
libstdc++: Improve Doxygen comments in <tuple>
libstdc++-v3/ChangeLog: * include/std/tuple: Add better Doxygen comments. (cherry picked from commit 94f7baf2194e2d20108c9d34d2766e6b14e25cef)
Diffstat (limited to 'libstdc++-v3/include')
-rw-r--r--libstdc++-v3/include/std/tuple28
1 files changed, 23 insertions, 5 deletions
diff --git a/libstdc++-v3/include/std/tuple b/libstdc++-v3/include/std/tuple
index 04b7711..b93252e 100644
--- a/libstdc++-v3/include/std/tuple
+++ b/libstdc++-v3/include/std/tuple
@@ -1586,6 +1586,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
#endif // three_way_comparison
// NB: DR 705.
+ /// Create a tuple containing copies of the arguments
template<typename... _Elements>
constexpr tuple<typename __decay_and_strip<_Elements>::__type...>
make_tuple(_Elements&&... __args)
@@ -1597,7 +1598,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
// _GLIBCXX_RESOLVE_LIB_DEFECTS
// 2275. Why is forward_as_tuple not constexpr?
- /// std::forward_as_tuple
+ /// Create a tuple of lvalue or rvalue references to the arguments
template<typename... _Elements>
constexpr tuple<_Elements&&...>
forward_as_tuple(_Elements&&... __args) noexcept
@@ -1624,7 +1625,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
constexpr const _Tp&&
get(const array<_Tp, _Nm>&&) noexcept;
-
+ /// @cond undocumented
template<size_t, typename, typename, size_t>
struct __make_tuple_impl;
@@ -1736,8 +1737,9 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
template<typename... _Tps>
struct __is_tuple_like_impl<tuple<_Tps...>> : true_type
{ };
+ /// @endcond
- /// tuple_cat
+ /// Create a `tuple` containing all elements from multiple tuple-like objects
template<typename... _Tpls, typename = typename
enable_if<__and_<__is_tuple_like<_Tpls>...>::value>::type>
constexpr auto
@@ -1752,13 +1754,13 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
// _GLIBCXX_RESOLVE_LIB_DEFECTS
// 2301. Why is tie not constexpr?
- /// tie
+ /// Return a tuple of lvalue references bound to the arguments
template<typename... _Elements>
constexpr tuple<_Elements&...>
tie(_Elements&... __args) noexcept
{ return tuple<_Elements&...>(__args...); }
- /// swap
+ /// Exchange the values of two tuples
template<typename... _Elements>
_GLIBCXX20_CONSTEXPR
inline
@@ -1774,6 +1776,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
{ __x.swap(__y); }
#if __cplusplus > 201402L || !defined(__STRICT_ANSI__) // c++1z or gnu++11
+ /// Exchange the values of two const tuples (if const elements can be swapped)
template<typename... _Elements>
_GLIBCXX20_CONSTEXPR
typename enable_if<!__and_<__is_swappable<_Elements>...>::value>::type
@@ -1794,6 +1797,21 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
// _GLIBCXX_RESOLVE_LIB_DEFECTS
// 2773. Making std::ignore constexpr
+ /** Used with `std::tie` to ignore an element of a tuple
+ *
+ * When using `std::tie` to assign the elements of a tuple to variables,
+ * unwanted elements can be ignored by using `std::ignore`. For example:
+ *
+ * ```
+ * int x, y;
+ * std::tie(x, std::ignore, y) = std::make_tuple(1, 2, 3);
+ * ```
+ *
+ * This assignment will perform `x=1; std::ignore=2; y=3;` which results
+ * in the second element being ignored.
+ *
+ * @since C++11
+ */
_GLIBCXX17_INLINE constexpr _Swallow_assign ignore{};
/// Partial specialization for tuples