2018-07-04 Jonathan Wakely <jwakely@redhat.com>
+ P0646R1 Improving the Return Value of Erase-Like Algorithms I
+ * include/bits/forward_list.h (__cpp_lib_list_remove_return_type):
+ Define.
+ (forward_list::__remove_return_type): Define typedef as size_type or
+ void, according to __cplusplus value.
+ (_GLIBCXX_FWDLIST_REMOVE_RETURN_TYPE_TAG): Define macro as abi-tag or
+ empty, according to __cplusplus value.
+ (forward_list::remove, forward_list::unique): Use typedef and macro
+ to change return type and add abi-tag for C++2a.
+ (forward_list::remove_if<Pred>, forward_list::unique<BinPred>): Use
+ typedef to change return type for C++2a.
+ * include/bits/forward_list.tcc (_GLIBCXX20_ONLY): Define macro.
+ (forward_list::remove, forward_list::remove_if<Pred>)
+ (forward_list::unique<BinPred>): Return number of removed elements
+ for C++2a.
+ * include/bits/list.tcc (_GLIBCXX20_ONLY): Define macro.
+ (list::remove, list::unique, list::remove_if<Predicate>)
+ (list::unique<BinaryPredicate>): Return number of removed elements
+ for C++2a.
+ * include/bits/stl_list.h (__cpp_lib_list_remove_return_type): Define.
+ (list::__remove_return_type): Define typedef as size_type or
+ void, according to __cplusplus value.
+ (_GLIBCXX_LIST_REMOVE_RETURN_TYPE_TAG): Define macro as abi-tag or
+ empty, according to __cplusplus value.
+ (list::remove, list::unique): Use typedef and macro to change return
+ type and add abi-tag for C++2a.
+ (list::remove_if<Predicate>, list::unique<BinaryPredicate>): Use
+ typedef to change return type for C++2a.
+ * include/std/version (__cpp_lib_list_remove_return_type): Define.
+ * testsuite/23_containers/forward_list/operations/
+ remove_cxx20_return.cc: New.
+ * testsuite/23_containers/forward_list/operations/
+ unique_cxx20_return.cc: New.
+
P0458R2 Checking for Existence of an Element in Associative Containers
* include/bits/stl_map.h (map::contains): Add for C++2a.
* include/bits/stl_multimap.h (multimap::contains): Likewise.
{ _M_splice_after(__pos, __before, __last); }
// @}
+ private:
+#if __cplusplus > 201703L
+# define __cpp_lib_list_remove_return_type 201806L
+ using __remove_return_type = size_type;
+# define _GLIBCXX_FWDLIST_REMOVE_RETURN_TYPE_TAG \
+ __attribute__((__abi_tag__("__cxx20")))
+#else
+ using __remove_return_type = void;
+# define _GLIBCXX_FWDLIST_REMOVE_RETURN_TYPE_TAG
+#endif
+ public:
+
/**
* @brief Remove all elements equal to value.
* @param __val The value to remove.
* touched in any way. Managing the pointer is the user's
* responsibility.
*/
- void
+ _GLIBCXX_FWDLIST_REMOVE_RETURN_TYPE_TAG
+ __remove_return_type
remove(const _Tp& __val);
/**
* responsibility.
*/
template<typename _Pred>
- void
+ __remove_return_type
remove_if(_Pred __pred);
/**
* the pointed-to memory is not touched in any way. Managing
* the pointer is the user's responsibility.
*/
- void
+ _GLIBCXX_FWDLIST_REMOVE_RETURN_TYPE_TAG
+ __remove_return_type
unique()
- { unique(std::equal_to<_Tp>()); }
+ { return unique(std::equal_to<_Tp>()); }
+
+#undef _GLIBCXX_FWDLIST_REMOVE_RETURN_TYPE_TAG
/**
* @brief Remove consecutive elements satisfying a predicate.
* Managing the pointer is the user's responsibility.
*/
template<typename _BinPred>
- void
+ __remove_return_type
unique(_BinPred __binary_pred);
/**
return iterator(const_cast<_Node_base*>(__pos._M_node));
}
+#if __cplusplus > 201703L
+# define _GLIBCXX20_ONLY(__expr) __expr
+#else
+# define _GLIBCXX20_ONLY(__expr)
+#endif
+
template<typename _Tp, typename _Alloc>
- void
+ auto
forward_list<_Tp, _Alloc>::
- remove(const _Tp& __val)
+ remove(const _Tp& __val) -> __remove_return_type
{
+ size_type __removed __attribute__((__unused__)) = 0;
_Node_base* __curr = &this->_M_impl._M_head;
_Node_base* __extra = nullptr;
if (__tmp->_M_valptr() != std::__addressof(__val))
{
this->_M_erase_after(__curr);
+ _GLIBCXX20_ONLY( __removed++ );
continue;
}
else
}
if (__extra)
- this->_M_erase_after(__extra);
+ {
+ this->_M_erase_after(__extra);
+ _GLIBCXX20_ONLY( __removed++ );
+ }
+ return _GLIBCXX20_ONLY( __removed );
}
template<typename _Tp, typename _Alloc>
template<typename _Pred>
- void
+ auto
forward_list<_Tp, _Alloc>::
- remove_if(_Pred __pred)
+ remove_if(_Pred __pred) -> __remove_return_type
{
+ size_type __removed __attribute__((__unused__)) = 0;
_Node_base* __curr = &this->_M_impl._M_head;
while (_Node* __tmp = static_cast<_Node*>(__curr->_M_next))
{
if (__pred(*__tmp->_M_valptr()))
- this->_M_erase_after(__curr);
+ {
+ this->_M_erase_after(__curr);
+ _GLIBCXX20_ONLY( __removed++ );
+ }
else
__curr = __curr->_M_next;
}
+ return _GLIBCXX20_ONLY( __removed );
}
template<typename _Tp, typename _Alloc>
template<typename _BinPred>
- void
+ auto
forward_list<_Tp, _Alloc>::
- unique(_BinPred __binary_pred)
+ unique(_BinPred __binary_pred) -> __remove_return_type
{
iterator __first = begin();
iterator __last = end();
if (__first == __last)
- return;
+ return _GLIBCXX20_ONLY(0);
+ size_type __removed __attribute__((__unused__)) = 0;
iterator __next = __first;
while (++__next != __last)
{
if (__binary_pred(*__first, *__next))
- erase_after(__first);
+ {
+ erase_after(__first);
+ _GLIBCXX20_ONLY( __removed++ );
+ }
else
__first = __next;
__next = __first;
}
+ return _GLIBCXX20_ONLY( __removed );
}
+#undef _GLIBCXX20_ONLY
+
template<typename _Tp, typename _Alloc>
template<typename _Comp>
void
insert(__last1, __first2, __last2);
}
+#if __cplusplus > 201703L
+# define _GLIBCXX20_ONLY(__expr) __expr
+#else
+# define _GLIBCXX20_ONLY(__expr)
+#endif
+
template<typename _Tp, typename _Alloc>
- void
+ typename list<_Tp, _Alloc>::__remove_return_type
list<_Tp, _Alloc>::
remove(const value_type& __value)
{
+ size_type __removed __attribute__((__unused__)) = 0;
iterator __first = begin();
iterator __last = end();
iterator __extra = __last;
// 526. Is it undefined if a function in the standard changes
// in parameters?
if (std::__addressof(*__first) != std::__addressof(__value))
- _M_erase(__first);
+ {
+ _M_erase(__first);
+ _GLIBCXX20_ONLY( __removed++ );
+ }
else
__extra = __first;
}
__first = __next;
}
if (__extra != __last)
- _M_erase(__extra);
+ {
+ _M_erase(__extra);
+ _GLIBCXX20_ONLY( __removed++ );
+ }
+ return _GLIBCXX20_ONLY( __removed );
}
template<typename _Tp, typename _Alloc>
- void
+ typename list<_Tp, _Alloc>::__remove_return_type
list<_Tp, _Alloc>::
unique()
{
iterator __first = begin();
iterator __last = end();
if (__first == __last)
- return;
+ return _GLIBCXX20_ONLY( 0 );
+ size_type __removed __attribute__((__unused__)) = 0;
iterator __next = __first;
while (++__next != __last)
{
if (*__first == *__next)
- _M_erase(__next);
+ {
+ _M_erase(__next);
+ _GLIBCXX20_ONLY( __removed++ );
+ }
else
__first = __next;
__next = __first;
}
+ return _GLIBCXX20_ONLY( __removed );
}
template<typename _Tp, typename _Alloc>
template<typename _Tp, typename _Alloc>
template <typename _Predicate>
- void
+ typename list<_Tp, _Alloc>::__remove_return_type
list<_Tp, _Alloc>::
remove_if(_Predicate __pred)
{
+ size_type __removed __attribute__((__unused__)) = 0;
iterator __first = begin();
iterator __last = end();
while (__first != __last)
iterator __next = __first;
++__next;
if (__pred(*__first))
- _M_erase(__first);
+ {
+ _M_erase(__first);
+ _GLIBCXX20_ONLY( __removed++ );
+ }
__first = __next;
}
+ return _GLIBCXX20_ONLY( __removed );
}
template<typename _Tp, typename _Alloc>
template <typename _BinaryPredicate>
- void
+ typename list<_Tp, _Alloc>::__remove_return_type
list<_Tp, _Alloc>::
unique(_BinaryPredicate __binary_pred)
{
iterator __first = begin();
iterator __last = end();
if (__first == __last)
- return;
+ return _GLIBCXX20_ONLY(0);
+ size_type __removed __attribute__((__unused__)) = 0;
iterator __next = __first;
while (++__next != __last)
{
if (__binary_pred(*__first, *__next))
- _M_erase(__next);
+ {
+ _M_erase(__next);
+ _GLIBCXX20_ONLY( __removed++ );
+ }
else
__first = __next;
__next = __first;
}
+ return _GLIBCXX20_ONLY( __removed );
}
+#undef _GLIBCXX20_ONLY
+
template<typename _Tp, typename _Alloc>
template <typename _StrictWeakOrdering>
void
{ splice(__position, std::move(__x), __first, __last); }
#endif
+ private:
+#if __cplusplus > 201703L
+# define __cpp_lib_list_remove_return_type 201806L
+ typedef size_type __remove_return_type;
+# define _GLIBCXX_LIST_REMOVE_RETURN_TYPE_TAG \
+ __attribute__((__abi_tag__("__cxx20")))
+#else
+ typedef void __remove_return_type;
+# define _GLIBCXX_LIST_REMOVE_RETURN_TYPE_TAG
+#endif
+ public:
+
/**
* @brief Remove all elements equal to value.
* @param __value The value to remove.
* touched in any way. Managing the pointer is the user's
* responsibility.
*/
- void
+ _GLIBCXX_LIST_REMOVE_RETURN_TYPE_TAG
+ __remove_return_type
remove(const _Tp& __value);
/**
* responsibility.
*/
template<typename _Predicate>
- void
+ __remove_return_type
remove_if(_Predicate);
/**
* the pointed-to memory is not touched in any way. Managing
* the pointer is the user's responsibility.
*/
- void
+ _GLIBCXX_LIST_REMOVE_RETURN_TYPE_TAG
+ __remove_return_type
unique();
/**
* Managing the pointer is the user's responsibility.
*/
template<typename _BinaryPredicate>
- void
+ __remove_return_type
unique(_BinaryPredicate);
+#undef _GLIBCXX_LIST_REMOVE_RETURN_TYPE_TAG
+
/**
* @brief Merge sorted lists.
* @param __x Sorted list to merge.
#define __cpp_lib_is_swappable 201603
#define __cpp_lib_launder 201606
#define __cpp_lib_lcm 201606
+#define __cpp_lib_list_remove_return_type 201806L
#define __cpp_lib_logical_traits 201510
#define __cpp_lib_make_from_tuple 201606
#define __cpp_lib_map_insertion 201411
--- /dev/null
+// Copyright (C) 2018 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library. This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3. If not see
+// <http://www.gnu.org/licenses/>.
+
+// { dg-options "-std=gnu++2a" }
+// { dg-do run { target c++2a } }
+
+#include <forward_list>
+#include <testsuite_hooks.h>
+
+using test_type = std::forward_list<int>;
+
+void
+test01()
+{
+ test_type x{1, 2, 3, 4, 3, 2, 1};
+ static_assert(std::is_same_v<decltype(x.remove(0)), test_type::size_type>);
+ test_type::size_type r = x.remove(0);
+ VERIFY( r == 0 );
+ r = x.remove(1);
+ VERIFY( r == 2 );
+ r = x.remove(1);
+ VERIFY( r == 0 );
+ r = x.remove(4);
+ VERIFY( r == 1 );
+}
+
+void
+test02()
+{
+ int i = 0;
+ auto pred = [&i](int val) { return val == i; };
+ test_type x{1, 2, 3, 4, 3, 2, 1};
+ static_assert(std::is_same_v<decltype(x.remove_if(pred)),
+ test_type::size_type>);
+ test_type::size_type r = x.remove_if(pred);
+ VERIFY( r == 0 );
+ i = 1;
+ r = x.remove_if(pred);
+ VERIFY( r == 2 );
+ r = x.remove_if(pred);
+ VERIFY( r == 0 );
+ i = 4;
+ r = x.remove_if(pred);
+ VERIFY( r == 1 );
+}
+
+int
+main()
+{
+ test01();
+ test02();
+}
--- /dev/null
+// Copyright (C) 2018 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library. This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3. If not see
+// <http://www.gnu.org/licenses/>.
+
+// { dg-options "-std=gnu++2a" }
+// { dg-do run { target c++2a } }
+
+#include <forward_list>
+#include <testsuite_hooks.h>
+
+using test_type = std::forward_list<int>;
+
+void
+test01()
+{
+ test_type x{1, 2, 2, 4, 4, 2, 1};
+ static_assert(std::is_same_v<decltype(x.unique()), test_type::size_type>);
+ test_type::size_type r = x.unique();
+ VERIFY( r == 2 );
+ r = x.unique();
+ VERIFY( r == 0 );
+}
+
+void
+test02()
+{
+ auto pred = [](int val, int prev) { return val == prev; };
+ test_type x{1, 2, 2, 4, 4, 2, 1};
+ static_assert(std::is_same_v<decltype(x.unique(pred)),
+ test_type::size_type>);
+ test_type::size_type r = x.unique(pred);
+ VERIFY( r == 2 );
+ r = x.unique(pred);
+ VERIFY( r == 0 );
+}
+
+int
+main()
+{
+ test01();
+ test02();
+}
--- /dev/null
+// Copyright (C) 2018 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library. This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3. If not see
+// <http://www.gnu.org/licenses/>.
+
+// { dg-options "-std=gnu++2a" }
+// { dg-do run { target c++2a } }
+
+#include <list>
+#include <testsuite_hooks.h>
+
+using test_type = std::list<int>;
+
+void
+test01()
+{
+ test_type x{1, 2, 3, 4, 3, 2, 1};
+ static_assert(std::is_same_v<decltype(x.remove(0)), test_type::size_type>);
+ test_type::size_type r = x.remove(0);
+ VERIFY( r == 0 );
+ r = x.remove(1);
+ VERIFY( r == 2 );
+ r = x.remove(1);
+ VERIFY( r == 0 );
+ r = x.remove(4);
+ VERIFY( r == 1 );
+}
+
+void
+test02()
+{
+ int i = 0;
+ auto pred = [&i](int val) { return val == i; };
+ test_type x{1, 2, 3, 4, 3, 2, 1};
+ static_assert(std::is_same_v<decltype(x.remove_if(pred)),
+ test_type::size_type>);
+ test_type::size_type r = x.remove_if(pred);
+ VERIFY( r == 0 );
+ i = 1;
+ r = x.remove_if(pred);
+ VERIFY( r == 2 );
+ r = x.remove_if(pred);
+ VERIFY( r == 0 );
+ i = 4;
+ r = x.remove_if(pred);
+ VERIFY( r == 1 );
+}
+
+int
+main()
+{
+ test01();
+ test02();
+}
--- /dev/null
+// Copyright (C) 2018 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library. This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3. If not see
+// <http://www.gnu.org/licenses/>.
+
+// { dg-options "-std=gnu++2a" }
+// { dg-do run { target c++2a } }
+
+#include <list>
+#include <testsuite_hooks.h>
+
+using test_type = std::list<int>;
+
+void
+test01()
+{
+ test_type x{1, 2, 2, 4, 4, 2, 1};
+ static_assert(std::is_same_v<decltype(x.unique()), test_type::size_type>);
+ test_type::size_type r = x.unique();
+ VERIFY( r == 2 );
+ r = x.unique();
+ VERIFY( r == 0 );
+}
+
+void
+test02()
+{
+ auto pred = [](int val, int prev) { return val == prev; };
+ test_type x{1, 2, 2, 4, 4, 2, 1};
+ static_assert(std::is_same_v<decltype(x.unique(pred)),
+ test_type::size_type>);
+ test_type::size_type r = x.unique(pred);
+ VERIFY( r == 2 );
+ r = x.unique(pred);
+ VERIFY( r == 0 );
+}
+
+int
+main()
+{
+ test01();
+ test02();
+}