|
@@ -10,19 +10,32 @@
|
|
|
// <algorithm>
|
|
|
|
|
|
// template<class ForwardIterator, class Predicate>
|
|
|
-// ForwardIterator
|
|
|
+// constpexr ForwardIterator // constexpr after C++17
|
|
|
// partition_point(ForwardIterator first, ForwardIterator last, Predicate pred);
|
|
|
|
|
|
#include <algorithm>
|
|
|
#include <cassert>
|
|
|
|
|
|
+#include "test_macros.h"
|
|
|
#include "test_iterators.h"
|
|
|
|
|
|
struct is_odd
|
|
|
{
|
|
|
- bool operator()(const int& i) const {return i & 1;}
|
|
|
+ TEST_CONSTEXPR bool operator()(const int& i) const {return i & 1;}
|
|
|
};
|
|
|
|
|
|
+
|
|
|
+#if TEST_STD_VER > 17
|
|
|
+TEST_CONSTEXPR int test_constexpr() {
|
|
|
+ int ia[] = {1, 3, 5, 2, 4, 6};
|
|
|
+ int ib[] = {1, 2, 3, 4, 5, 6};
|
|
|
+ return (std::partition_point(std::begin(ia), std::end(ia), is_odd()) == ia+3)
|
|
|
+ && (std::partition_point(std::begin(ib), std::end(ib), is_odd()) == ib+1)
|
|
|
+ ;
|
|
|
+ }
|
|
|
+#endif
|
|
|
+
|
|
|
+
|
|
|
int main()
|
|
|
{
|
|
|
{
|
|
@@ -73,4 +86,8 @@ int main()
|
|
|
forward_iterator<const int*>(std::begin(ia)),
|
|
|
is_odd()) == forward_iterator<const int*>(ia));
|
|
|
}
|
|
|
+
|
|
|
+#if TEST_STD_VER > 17
|
|
|
+ static_assert(test_constexpr());
|
|
|
+#endif
|
|
|
}
|