1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472
|
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
// SPDX-FileCopyrightInfo: Copyright © DUNE Project contributors, see file LICENSE.md in module root
// SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception
#ifndef DUNE_ITERATORFACADES_HH
#define DUNE_ITERATORFACADES_HH
#include <iterator>
#include <type_traits>
#include <dune/common/typetraits.hh>
#include <dune/common/concept.hh>
namespace Dune
{
/*! \defgroup IteratorFacades Iterator facades
\ingroup Common
\brief Iterator facades for writing stl conformant iterators.
With using these facades writing iterators for arbitrary containers becomes much less
cumbersome as only few functions have to be implemented. All other functions needed by
the stl are provided by the facades using the Barton-Nackman trick (also known as
curiously recurring template pattern).
The following example illustrates how a random access iterator might be written:
\code
#include<dune/common/iteratorfacades.hh>
...
template<class C, class T>
class TestIterator : public Dune::BidirectionalIteratorFacade<TestIterator<C,T>,T, T&, int>
{
friend class TestIterator<typename std::remove_const<C>::type, typename std::remove_const<T>::type >;
friend class TestIterator<const typename std::remove_const<C>::type, const typename std::remove_const<T>::type >;
public:
// Constructors needed by the facade iterators.
TestIterator(): container_(0), position_(0)
{ }
TestIterator(C& cont, int pos)
: container_(&cont), position_(pos)
{}
TestIterator(const TestIterator<typename std::remove_const<C>::type, typename std::remove_const<T>::type >& other)
: container_(other.container_), position_(other.position_)
{}
TestIterator(const TestIterator<const typename std::remove_const<C>::type, const typename std::remove_const<T>::type >& other)
: container_(other.container_), position_(other.position_)
{}
// Methods needed by the forward iterator
bool equals(const TestIterator<typename std::remove_const<C>::type,typename std::remove_const<T>::type>& other) const
{
return position_ == other.position_ && container_ == other.container_;
}
bool equals(const TestIterator<const typename std::remove_const<C>::type,const typename std::remove_const<T>::type>& other) const
{
return position_ == other.position_ && container_ == other.container_;
}
T& dereference() const
{
return container_->values_[position_];
}
void increment()
{
++position_;
}
// Additional function needed by BidirectionalIterator
void decrement()
{
--position_;
}
// Additional function needed by RandomAccessIterator
T& elementAt(int i)const
{
return container_->operator[](position_+i);
}
void advance(int n)
{
position_=position_+n;
}
std::ptrdiff_t distanceTo(TestIterator<const typename std::remove_const<C>::type,const typename std::remove_const<T>::type> other) const
{
assert(other.container_==container_);
return other.position_ - position_;
}
std::ptrdiff_t distanceTo(TestIterator<const typename std::remove_const<C>::type, typename std::remove_const<T>::type> other) const
{
assert(other.container_==container_);
return other.position_ - position_;
}
private:
C *container_;
size_t position_;
};
\endcode
See dune/common/test/iteratorbase.hh for details.
*/
/**
* @file
* @brief This file implements iterator facade classes for writing stl conformant iterators.
*
* With using these facades writing iterators for arbitrary containers becomes much less
* cumbersome as only few functions have to be implemented. All other functions needed by
* the stl are provided by the facades using the Barton-Nackman trick (also known as
* curiously recurring template pattern.
*/
/** @addtogroup IteratorFacades
*
* @{
*/
/**
* @brief Base class for stl conformant forward iterators.
*
* \tparam T The derived class
* \tparam V The value type
* \tparam R The reference type
* \tparam D The type for differences between two iterators
*/
template<class T, class V, class R = V&, class D = std::ptrdiff_t>
class ForwardIteratorFacade
{
public:
/* type aliases required by C++ for iterators */
using iterator_category = std::forward_iterator_tag;
using value_type = typename std::remove_const<V>::type;
using difference_type = D;
using pointer = V*;
using reference = R;
/**
* @brief The type of derived iterator.
*
* The iterator has to define following
* functions have to be present:
*
* \code
*
* // Access the value referred to.
* Reference dereference() const;
*
* // Compare for equality with iterator j
* bool equals(j);
*
* // position the iterator at the next element.
* void increment()
*
* // check for equality with other iterator
* bool equals(other)
* \endcode
*
* For an elaborate explanation see the
* <A HREF="http://www.sgi.com/tech/stl/iterator_traits.html">STL Documentation</A>!
*/
typedef T DerivedType;
/**
* @brief The type of value accessed through the iterator.
*/
typedef V Value;
/**
* @brief The pointer to the Value.
*/
typedef V* Pointer;
/**
* @brief The type of the difference between two positions.
*/
typedef D DifferenceType;
/**
* @brief The type of the reference to the values accessed.
*/
typedef R Reference;
/** @brief Dereferencing operator. */
constexpr Reference operator*() const
{
return static_cast<DerivedType const*>(this)->dereference();
}
constexpr Pointer operator->() const
{
return &(static_cast<const DerivedType *>(this)->dereference());
}
/** @brief Preincrement operator. */
constexpr DerivedType& operator++()
{
static_cast<DerivedType *>(this)->increment();
return *static_cast<DerivedType *>(this);
}
/** @brief Postincrement operator. */
constexpr DerivedType operator++(int)
{
DerivedType tmp(static_cast<DerivedType const&>(*this));
this->operator++();
return tmp;
}
};
/**
* @brief Checks for equality.
*
* This operation is only defined if either D2
* is convertible to D1 or vice versa. If that is
* not the case the compiler will report an error
* as EnableIfInterOperable<D1,D2,bool>::type is
* not defined.
*
*/
template<class T1, class V1, class R1, class D,
class T2, class V2, class R2>
constexpr typename EnableIfInterOperable<T1,T2,bool>::type
operator==(const ForwardIteratorFacade<T1,V1,R1,D>& lhs,
const ForwardIteratorFacade<T2,V2,R2,D>& rhs)
{
if(std::is_convertible<T2,T1>::value)
return static_cast<const T1&>(lhs).equals(static_cast<const T2&>(rhs));
else
return static_cast<const T2&>(rhs).equals(static_cast<const T1&>(lhs));
}
/**
* @brief Checks for inequality.
*
* This operation is only defined if either D2
* is convertible to D1 or vice versa. If that is
* not the case the compiler will report an error
* as EnableIfInterOperable<D1,D2,bool>::type is
* not defined.
*
*/
template<class T1, class V1, class R1, class D,
class T2, class V2, class R2>
constexpr typename EnableIfInterOperable<T1,T2,bool>::type
operator!=(const ForwardIteratorFacade<T1,V1,R1,D>& lhs,
const ForwardIteratorFacade<T2,V2,R2,D>& rhs)
{
if(std::is_convertible<T2,T1>::value)
return !static_cast<const T1&>(lhs).equals(static_cast<const T2&>(rhs));
else
return !static_cast<const T2&>(rhs).equals(static_cast<const T1&>(lhs));
}
/**
* @brief Facade class for stl conformant bidirectional iterators.
*
*/
template<class T, class V, class R = V&, class D = std::ptrdiff_t>
class BidirectionalIteratorFacade
{
public:
/* type aliases required by C++ for iterators */
using iterator_category = std::bidirectional_iterator_tag;
using value_type = typename std::remove_const<V>::type;
using difference_type = D;
using pointer = V*;
using reference = R;
/**
* @brief The type of derived iterator.
*
* The iterator has to define following
* functions have to be present:
*
* \code
*
* // Access the value referred to.
* Reference dereference() const;
*
* // Compare for equality with j
* bool equals(j);
*
* // position the iterator at the next element.
* void increment()
*
* // position the iterator at the previous element.
* void decrement()
*
* \endcode
*
* For an elaborate explanation see the
* <A HREF="http://www.sgi.com/tech/stl/iterator_traits.html">STL Documentation</A>
*/
typedef T DerivedType;
/**
* @brief The type of value accessed through the iterator.
*/
typedef V Value;
/**
* @brief The pointer to the Value.
*/
typedef V* Pointer;
/**
* @brief The type of the difference between two positions.
*/
typedef D DifferenceType;
/**
* @brief The type of the reference to the values accessed.
*/
typedef R Reference;
/** @brief Dereferencing operator. */
constexpr Reference operator*() const
{
return static_cast<DerivedType const*>(this)->dereference();
}
constexpr Pointer operator->() const
{
return &(static_cast<const DerivedType *>(this)->dereference());
}
/** @brief Preincrement operator. */
constexpr DerivedType& operator++()
{
static_cast<DerivedType *>(this)->increment();
return *static_cast<DerivedType *>(this);
}
/** @brief Postincrement operator. */
constexpr DerivedType operator++(int)
{
DerivedType tmp(static_cast<DerivedType const&>(*this));
this->operator++();
return tmp;
}
/** @brief Preincrement operator. */
constexpr DerivedType& operator--()
{
static_cast<DerivedType *>(this)->decrement();
return *static_cast<DerivedType *>(this);
}
/** @brief Postincrement operator. */
constexpr DerivedType operator--(int)
{
DerivedType tmp(static_cast<DerivedType const&>(*this));
this->operator--();
return tmp;
}
};
/**
* @brief Checks for equality.
*
* This operation is only defined if T2 is convertible to T1, otherwise it
* is removed from the overload set since the enable_if for the return type
* yield an invalid type expression.
*/
template<class T1, class V1, class R1, class D,
class T2, class V2, class R2>
constexpr typename std::enable_if<std::is_convertible<T2,T1>::value,bool>::type
operator==(const BidirectionalIteratorFacade<T1,V1,R1,D>& lhs,
const BidirectionalIteratorFacade<T2,V2,R2,D>& rhs)
{
return static_cast<const T1&>(lhs).equals(static_cast<const T2&>(rhs));
}
/**
* @brief Checks for equality.
*
* This operation is only defined if either T1 is convertible to T2, and T2
* is not convetible to T1. Otherwise the operator is removed from the
* overload set since the enable_if for the return type yield an invalid
* type expression.
*/
template<class T1, class V1, class R1, class D,
class T2, class V2, class R2>
constexpr
typename std::enable_if<std::is_convertible<T1,T2>::value && !std::is_convertible<T2,T1>::value,
bool>::type
operator==(const BidirectionalIteratorFacade<T1,V1,R1,D>& lhs,
const BidirectionalIteratorFacade<T2,V2,R2,D>& rhs)
{
return static_cast<const T2&>(rhs).equals(static_cast<const T1&>(lhs));
}
/**
* @brief Checks for inequality.
*
* This operation is only defined if either D2
* is convertible to D1 or vice versa. If that is
* not the case the compiler will report an error
* as EnableIfInterOperable<D1,D2,bool>::type is
* not defined.
*
*/
template<class T1, class V1, class R1, class D,
class T2, class V2, class R2>
constexpr typename EnableIfInterOperable<T1,T2,bool>::type
operator!=(const BidirectionalIteratorFacade<T1,V1,R1,D>& lhs,
const BidirectionalIteratorFacade<T2,V2,R2,D>& rhs)
{
return !(lhs == rhs);
}
/**
* @brief Base class for stl conformant forward iterators.
*
*/
template<class T, class V, class R = V&, class D = std::ptrdiff_t>
class RandomAccessIteratorFacade
{
public:
/* type aliases required by C++ for iterators */
using iterator_category = std::random_access_iterator_tag;
using value_type = typename std::remove_const<V>::type;
using difference_type = D;
using pointer = V*;
using reference = R;
/**
* @brief The type of derived iterator.
*
* The iterator has to define following
* functions have to be present:
*
* \code
*
* // Access the value referred to.
* Reference dereference() const;
* // Access the value at some other location
* Reference elementAt(n) const;
*
* // Compare for equality with j
* bool equals(j);
*
* // position the iterator at the next element.
* void increment()
*
* // position the iterator at the previous element.
* void decrement()
*
* // advance the iterator by a number of positions-
* void advance(DifferenceType n);
* // calculate the distance to another iterator.
* // One should incorporate an assertion whether
* // the same containers are referenced
* DifferenceType distanceTo(j) const;
* \endcode
*
* For an elaborate explanation see the
* <A HREF="http://www.sgi.com/tech/stl/iterator_traits.html">STL Documentation</A>
*/
typedef T DerivedType;
/**
* @brief The type of value accessed through the iterator.
*/
typedef V Value;
/**
* @brief The pointer to the Value.
*/
typedef V* Pointer;
/**
* @brief The type of the difference between two positions.
*/
typedef D DifferenceType;
/**
* @brief The type of the reference to the values accessed.
*/
typedef R Reference;
/** @brief Dereferencing operator. */
constexpr Reference operator*() const
{
return static_cast<DerivedType const*>(this)->dereference();
}
constexpr Pointer operator->() const
{
return &(static_cast<const DerivedType *>(this)->dereference());
}
/**
* @brief Get the element n positions from the current one.
* @param n The distance to the element.
* @return The element at that distance.
*/
constexpr Reference operator[](DifferenceType n) const
{
return static_cast<const DerivedType *>(this)->elementAt(n);
}
/** @brief Preincrement operator. */
constexpr DerivedType& operator++()
{
static_cast<DerivedType *>(this)->increment();
return *static_cast<DerivedType *>(this);
}
/** @brief Postincrement operator. */
constexpr DerivedType operator++(int)
{
DerivedType tmp(static_cast<DerivedType const&>(*this));
this->operator++();
return tmp;
}
constexpr DerivedType& operator+=(DifferenceType n)
{
static_cast<DerivedType *>(this)->advance(n);
return *static_cast<DerivedType *>(this);
}
constexpr DerivedType operator+(DifferenceType n) const
{
DerivedType tmp(static_cast<DerivedType const&>(*this));
tmp.advance(n);
return tmp;
}
/** @brief Predecrement operator. */
constexpr DerivedType& operator--()
{
static_cast<DerivedType *>(this)->decrement();
return *static_cast<DerivedType *>(this);
}
/** @brief Postdecrement operator. */
constexpr DerivedType operator--(int)
{
DerivedType tmp(static_cast<DerivedType const&>(*this));
this->operator--();
return tmp;
}
constexpr DerivedType& operator-=(DifferenceType n)
{
static_cast<DerivedType *>(this)->advance(-n);
return *static_cast<DerivedType *>(this);
}
constexpr DerivedType operator-(DifferenceType n) const
{
DerivedType tmp(static_cast<DerivedType const&>(*this));
tmp.advance(-n);
return tmp;
}
};
/**
* @brief Checks for equality.
*
* This operation is only defined if either D2
* is convertible to D1 or vice versa. If that is
* not the case the compiler will report an error
* as EnableIfInterOperable<D1,D2,bool>::type is
* not defined.
*
*/
template<class T1, class V1, class R1, class D,
class T2, class V2, class R2>
constexpr typename EnableIfInterOperable<T1,T2,bool>::type
operator==(const RandomAccessIteratorFacade<T1,V1,R1,D>& lhs,
const RandomAccessIteratorFacade<T2,V2,R2,D>& rhs)
{
if(std::is_convertible<T2,T1>::value)
return static_cast<const T1&>(lhs).equals(static_cast<const T2&>(rhs));
else
return static_cast<const T2&>(rhs).equals(static_cast<const T1&>(lhs));
}
/**
* @brief Checks for inequality.
*
* This operation is only defined if either D2
* is convertible to D1 or vice versa. If that is
* not the case the compiler will report an error
* as EnableIfInterOperable<D1,D2,bool>::type is
* not defined.
*
*/
template<class T1, class V1, class R1, class D,
class T2, class V2, class R2>
constexpr typename EnableIfInterOperable<T1,T2,bool>::type
operator!=(const RandomAccessIteratorFacade<T1,V1,R1,D>& lhs,
const RandomAccessIteratorFacade<T2,V2,R2,D>& rhs)
{
if(std::is_convertible<T2,T1>::value)
return !static_cast<const T1&>(lhs).equals(static_cast<const T2&>(rhs));
else
return !static_cast<const T2&>(rhs).equals(static_cast<const T1&>(lhs));
}
/**
* @brief Comparison operator.
*
* This operation is only defined if either D2
* is convertible to D1 or vice versa. If that is
* not the case the compiler will report an error
* as EnableIfInterOperable<D1,D2,bool>::type is
* not defined.
*
*/
template<class T1, class V1, class R1, class D,
class T2, class V2, class R2>
constexpr typename EnableIfInterOperable<T1,T2,bool>::type
operator<(const RandomAccessIteratorFacade<T1,V1,R1,D>& lhs,
const RandomAccessIteratorFacade<T2,V2,R2,D>& rhs)
{
if(std::is_convertible<T2,T1>::value)
return static_cast<const T1&>(lhs).distanceTo(static_cast<const T2&>(rhs))>0;
else
return static_cast<const T2&>(rhs).distanceTo(static_cast<const T1&>(lhs))<0;
}
/**
* @brief Comparison operator.
*
* This operation is only defined if either D2
* is convertible to D1 or vice versa. If that is
* not the case the compiler will report an error
* as EnableIfInterOperable<D1,D2,bool>::type is
* not defined.
*
*/
template<class T1, class V1, class R1, class D,
class T2, class V2, class R2>
constexpr typename EnableIfInterOperable<T1,T2,bool>::type
operator<=(const RandomAccessIteratorFacade<T1,V1,R1,D>& lhs,
const RandomAccessIteratorFacade<T2,V2,R2,D>& rhs)
{
if(std::is_convertible<T2,T1>::value)
return static_cast<const T1&>(lhs).distanceTo(static_cast<const T2&>(rhs))>=0;
else
return static_cast<const T2&>(rhs).distanceTo(static_cast<const T1&>(lhs))<=0;
}
/**
* @brief Comparison operator.
*
* This operation is only defined if either D2
* is convertible to D1 or vice versa. If that is
* not the case the compiler will report an error
* as EnableIfInterOperable<D1,D2,bool>::type is
* not defined.
*
*/
template<class T1, class V1, class R1, class D,
class T2, class V2, class R2>
constexpr typename EnableIfInterOperable<T1,T2,bool>::type
operator>(const RandomAccessIteratorFacade<T1,V1,R1,D>& lhs,
const RandomAccessIteratorFacade<T2,V2,R2,D>& rhs)
{
if(std::is_convertible<T2,T1>::value)
return static_cast<const T1&>(lhs).distanceTo(static_cast<const T2&>(rhs))<0;
else
return static_cast<const T2&>(rhs).distanceTo(static_cast<const T1&>(lhs))>0;
}
/**
* @brief Comparison operator.
*
* This operation is only defined if either D2
* is convertible to D1 or vice versa. If that is
* not the case the compiler will report an error
* as EnableIfInterOperable<D1,D2,bool>::type is
* not defined.
*
*/
template<class T1, class V1, class R1, class D,
class T2, class V2, class R2>
constexpr typename EnableIfInterOperable<T1,T2,bool>::type
operator>=(const RandomAccessIteratorFacade<T1,V1,R1,D>& lhs,
const RandomAccessIteratorFacade<T2,V2,R2,D>& rhs)
{
if(std::is_convertible<T2,T1>::value)
return static_cast<const T1&>(lhs).distanceTo(static_cast<const T2&>(rhs))<=0;
else
return static_cast<const T2&>(rhs).distanceTo(static_cast<const T1&>(lhs))>=0;
}
/**
* @brief Calculates the difference between two pointers.
*
* This operation is only defined if either D2
* is convertible to D1 or vice versa. If that is
* not the case the compiler will report an error
* as EnableIfInterOperable<D1,D2,bool>::type is
* not defined.
*
*/
template<class T1, class V1, class R1, class D,
class T2, class V2, class R2>
constexpr typename EnableIfInterOperable<T1,T2,D>::type
operator-(const RandomAccessIteratorFacade<T1,V1,R1,D>& lhs,
const RandomAccessIteratorFacade<T2,V2,R2,D>& rhs)
{
if(std::is_convertible<T2,T1>::value)
return -static_cast<const T1&>(lhs).distanceTo(static_cast<const T2&>(rhs));
else
return static_cast<const T2&>(rhs).distanceTo(static_cast<const T1&>(lhs));
}
/**
* \brief Helper to mimic a pointer for proxy objects.
*
* This class is intended to be used as return type
* for operator-> on an iterator using proxy-values.
* It stores the proxy value and forwards operator->
* to the address of this value. In particular
* it can be passed to IteratorFacade when creating
* proxy iterators.
*/
template<class ProxyType>
class ProxyArrowResult
{
public:
constexpr ProxyArrowResult(ProxyType&& p)
noexcept(std::is_nothrow_constructible_v<ProxyType, ProxyType&&>)
: p_(std::move(p))
{}
constexpr ProxyArrowResult(const ProxyType& p)
noexcept(std::is_nothrow_constructible_v<ProxyType, const ProxyType&>)
: p_(p)
{}
constexpr const ProxyType* operator->() const noexcept
{
return &p_;
}
constexpr ProxyType* operator->() noexcept
{
return &p_;
}
private:
ProxyType p_;
};
/**
* \brief This class encapsulates access of IteratorFacade
*
* If you derive from IteratorFacade and want to provide
* iterator operations using `it.baseIterator()`, then
* this method either has to be public or IteratorFacadeAccess
* must be declared a friend.
*/
struct IteratorFacadeAccess
{
//! @private
template<class It>
static constexpr auto baseIterator(It&& it) noexcept
-> decltype(it.baseIterator())
{
return it.baseIterator();
}
//! @private
template<class It>
static constexpr auto derived(It&& it) noexcept
-> decltype(it.derived())
{
return it.derived();
}
};
namespace Impl::Concepts {
using namespace Dune::Concept;
template<class R>
struct BaseIterDereferenceOp
{
template<class It>
auto require(const It& it) -> decltype(
*(IteratorFacadeAccess::baseIterator(it)),
requireConvertible<decltype(*(IteratorFacadeAccess::baseIterator(it))), R>()
);
};
struct IterEqualsOp
{
template<class It1, class It2>
auto require(const It1& it1, const It2& it2) -> decltype(
requireConvertible<bool>(it1 == it2)
);
};
struct BaseIterEqualsOp
{
template<class It1, class It2>
auto require(const It1& it1, const It2& it2) -> decltype(
Dune::Concept::requireConvertible<bool>(IteratorFacadeAccess::baseIterator(it1) == IteratorFacadeAccess::baseIterator(it2))
);
};
struct BaseIterIncrementOp
{
template<class It>
auto require(It it) -> decltype(
++(IteratorFacadeAccess::baseIterator(it))
);
};
struct BaseIterDecrementOp
{
template<class It>
auto require(It it) -> decltype(
--(IteratorFacadeAccess::baseIterator(it))
);
};
template<class D>
struct IterAdvanceOp
{
template<class It>
auto require(It it) -> decltype(
it += std::declval<D>()
);
};
template<class D>
struct BaseIterAdvanceOp
{
template<class It>
auto require(It it) -> decltype(
IteratorFacadeAccess::baseIterator(it) += std::declval<D>()
);
};
template<class D>
struct IterDistanceOp
{
template<class It1, class It2>
auto require(const It1& it1, const It2& it2) -> decltype(
Dune::Concept::requireConvertible<D>(it1 - it2)
);
};
template<class D>
struct BaseIterDistanceOp
{
template<class It1, class It2>
auto require(const It1& it1, const It2& it2) -> decltype(
Dune::Concept::requireConvertible<D>(IteratorFacadeAccess::baseIterator(it1) - IteratorFacadeAccess::baseIterator(it2))
);
};
} // namespace Impl::Concept
/**
* @brief CRTP-Mixing class for stl conformant iterators of given iterator category
*
* The iterator category is given by the corresponding tag class.
* Currently supported tags are `std::forward_iterator_tag`,
* `std::bidirectional_iterator_tag`, `std::random_access_iterator_tag`.
*
* For proxy iterators (i.e. iterator that don't return a real reference but
* a so called proxy-value that behaves like a reference), the template parameter
* `R` should be the type of the proxy-value and no reference. In the latter case
* one should also use `P=ProxyArrowResult<R>` as pointer type used as return value
* of `operator->`. If `P` is not a raw pointer type, then it must be constructable
* from `V`.
*
* The derived class should implement methods as documented in the following.
* Notice that, if the iterator provides multiple of the possible
* implementations for a certain feature, then precedence for the
* different implementation follows the order given below.
*
* For a forward iterator the derived class `It` must provide:
*
* * Dereferencing a const iterator using any of the following approaches:
* 1. implement `*it`
* 2. implement `*(it.baseIterator())`
* * Incrementing a non-const iterator using any of the following approaches:
* 1. implement `++it` and declare `using IteratorFacade::operator++`
* 2. implement `++(it.baseIterator())`
* 3. implement `it+=1`
* * Equality comparison of two const iterators using any of the following approaches:
* 1. implement `it1==it2`
* 2. implement `it1.baseIterator()==it2.baseIterator()`
*
* For a bidirectional iterator it must additionally provide:
*
* * Decrementing a non-const iterator using any of the following approaches:
* 1. implement `--it` and declare `using IteratorFacade::operator--`
* 2. implement `--(it.baseIterator())`
* 3. implement `it-=1`
*
* For a random access iterator it must additionally provide:
*
* * Advacing a non-const iterator by an offset using any of the following approaches:
* 1. implement `it+=n`
* 2. implement `it.baseIterator()+=n`
* * Computing the distance between two const iterators using any of the following approaches:
* 1. implement `it1-it2`
* 2. implement `it1.baseIterator()-it2.baseIterator()`
*
* When relying on option 2 for any of those features, the `it.baseIterator()`
* method can be made private to hide it from the user. Then the derived
* class must declare IteratorFacadeAccess as friend. Notice that depending
* on the feature it is used for, `it.baseIterator()` must be a const or non-const
* method. Thus the derived class must provide both versions if it wants
* to implement const and non-const operation in terms of `it.baseIterator().
*
* For example a forward iterator for values of type `V` could be implemented
* by providing the core operations manually (option 1 above):
*
* @code
* class FooIterator
* : public Dune::IteratorFacade<FooIterator, std::forward_iterator_tag, V>
* {
* using Facade = Dune::IteratorFacade<FooIterator, std::forward_iterator_tag, V>;
*
* public:
*
* using reference = Facade::reference;
*
* reference operator*() const
* { return [implement dereferencing here]; }
*
* FooIterator& operator++() const
* { [implement incrementing here]; return *this; }
*
* friend bool operator==(const FooIterator& it1, const FooIterator& it2)
* { return [implement comparison here]; }
* };
* @endcode
*
* Alternatively the iterator can delegate arithmetic operations and
* comparisons to an underlying iterator/pointer/number (option 2 above).
* E.g. a random access iterator where the iterator position
* is identified by a consecutive number can be implemented
* as:
*
* @code
* class BarIterator
* : public Dune::IteratorFacade<BarIterator, std::random_access_iterator_tag, V>
* {
* using Facade = Dune::IteratorFacade<BarIterator, std::random_access_iterator_tag, V>;
*
* public:
*
* using reference = Facade::reference;
* using difference_type = Facade::difference_type;
*
* // Only implement dereferencing manually
* reference operator*() const
* { return [implement dereferencing at current position p_ here]; }
*
* private:
*
* // Delegate arithmetic operations and comparisons to p_ by exporting
* // it in const and mutable form using baseIterator().
* difference_type& baseIterator() { return p_; }
* const difference_type& baseIterator() const { return p_; }
*
* // Grant access to the private baseIterator() by a friend declaration.
* friend Dune::IteratorFacadeAccess;
*
* difference_type p_;
* };
* @endcode
*
* When providing `baseIterator()` individual method can still be overloaded
* by implementing them manually.
* E.g. a random access iterator
* for values of type `V` that returns reference-like proxy objects of type
* `R` instead of plain `V&` references and relies on an underlying iterator
* except for equality comparison can be implemented as:
*
* @code
* class ProxyIterator
* : public Dune::IteratorFacade<ProxyIterator, std::random_access_iterator_tag, V, R, Dune::ProxyArrowResult<R>>
* {
* using Facade = Dune::IteratorFacade<ProxyIterator, std::random_access_iterator_tag, V, R, Dune::ProxyArrowResult<R>>;
*
* public:
*
* using reference = Facade::reference;
*
* // Dereferencing yields copies of type R=reference
* reference operator*() const
* { return [implement dereferencing at current position it_ here]; }
*
* // Override comparison manually here
* friend bool operator==(const ProxyIterator& it1, const ProxyIterator& it2)
* { return [implement custom comparison here]; }
*
* private:
*
* // Delegate arithmetic operations to underlying base iterator.
* BaseIterator& baseIterator() { return it_; }
* const BaseIterator& baseIterator() const { return it_; }
* friend Dune::IteratorFacadeAccess;
*
* BaseIterator it_;
* };
* @endcode
*
* \tparam It The derived iterator class
* \tparam C Tag class of iterator category
* \tparam V The value type
* \tparam R The reference type, defaults to V&
* \tparam P Pointer type, defaults to V*
* \tparam D The type for differences between two iterators, defaults to std::ptrdiff_t
*/
template<class It, class C, class V, class R = V&, class P = V*, class D = std::ptrdiff_t>
class IteratorFacade
{
static constexpr bool isBidirectional = std::is_convertible_v<C, std::bidirectional_iterator_tag>;
static constexpr bool isRandomAccess = std::is_convertible_v<C, std::random_access_iterator_tag>;
// We make IteratorFacadeAccess a friend to allow forwarding of the derived()
// methods to the free operators instead of havin to do raw casts there.
// This allows to encapsulate all casts within IteratorFacade itself.
friend IteratorFacadeAccess;
protected:
//! The derived iterator type
using DerivedIterator = It;
//! Cast of `*this` to const DerivedIterator type
constexpr const DerivedIterator& derived() const
{
return static_cast<const DerivedIterator&>(*this);
}
//! Cast of `*this` to DerivedIterator type
constexpr DerivedIterator& derived()
{
return static_cast<DerivedIterator&>(*this);
}
public:
// Standard types of of C++ iterators
using iterator_category = C;
using value_type = typename std::remove_const<V>::type;
using reference = R;
using pointer = P;
using difference_type = D;
// Corresponding Dune typedefs
using Value = value_type;
using Reference = reference;
using Pointer = pointer;
using DifferenceType = difference_type;
// Only defined to do static assertions.
IteratorFacade()
{
static_assert(std::is_signed_v<difference_type>,
"Type used as difference_type must be signed");
const DerivedIterator& constDerived = derived();
static_assert(std::is_convertible_v<decltype(*constDerived), reference>,
"Derived class does not implement `*it` or `*(it.baseIterator())` for const `it` required by IteratorFacade<..., std::forward_iterator_tag, ...>.");
static_assert(std::is_convertible_v<decltype(++derived()), DerivedIterator&>,
"Derived class does not implement `++it`, `++(it.baseIterator())`, or `it+=1` for mutable `it` required by IteratorFacade<..., std::forward_iterator_tag, ...>.");
static_assert(std::is_convertible_v<decltype(constDerived==constDerived), bool>,
"Derived class does not implement `it1==it2` or `it1.baseIterator()==it2.baseIterator()` for const `it1` and `it2` required by IteratorFacade<..., std::forward_iterator_tag, ...>.");
if constexpr (isBidirectional)
static_assert(std::is_convertible_v<decltype(--derived()), DerivedIterator&>,
"Derived class does not implement `--it`, `--(it.baseIterator())`, or `it-=1` for mutable `it` required by IteratorFacade<..., std::bidirectional_iterator_tag, ...>.");
if constexpr (isRandomAccess)
{
static_assert(std::is_convertible_v<decltype(derived()+=std::declval<difference_type>()), DerivedIterator&>,
"Derived class does not implement `it+=` or `it.baseIterator()+=` for mutable `it` required by IteratorFacade<..., std::random_access_iterator_tag, ...>.");
static_assert(std::is_convertible_v<decltype(constDerived-constDerived), difference_type>,
"Derived class does not implement `it1-it2` or `it1.baseIterator()-it2.baseIterator()` for const `it1` and `it2` required by IteratorFacade<..., std::random_access_iterator_tag, ...>.");
}
}
/** @brief Dereferencing operator. */
constexpr decltype(auto) operator*() const
{
if constexpr (Dune::models<Impl::Concepts::BaseIterDereferenceOp<reference>, DerivedIterator>())
return *(IteratorFacadeAccess::baseIterator(derived()));
else
static_assert(AlwaysFalse<It>::value,
"Derived class does not implement `*it` or `*(it.baseIterator())` for const `it` required by IteratorFacade<..., std::forward_iterator_tag, ...>.");
}
/** @brief Arrow access to members of referenced value. */
constexpr pointer operator->() const
{
if constexpr (std::is_pointer_v<pointer>)
return std::addressof(*derived());
else
return pointer(*derived());
}
/** @brief Preincrement operator. */
constexpr decltype(auto) operator++()
{
if constexpr (Dune::models<Impl::Concepts::BaseIterIncrementOp, DerivedIterator>())
{
++(IteratorFacadeAccess::baseIterator(derived()));
return derived();
}
else if constexpr (Dune::models<Impl::Concepts::IterAdvanceOp<difference_type>, DerivedIterator>())
{
derived() += 1;
return derived();
}
else
static_assert(AlwaysFalse<It>::value,
"Derived class does not implement `++it`, `++(it.baseIterator())`, or `it+=1` for mutable `it` required by IteratorFacade<..., std::forward_iterator_tag, ...>.");
}
/** @brief Postincrement operator. */
constexpr DerivedIterator operator++(int)
{
DerivedIterator tmp(derived());
++derived();
return tmp;
}
/**
* @brief Predecrement operator.
*
* Only enabled for bidirectional and random-access iterators.
*/
template<bool dummy=true, std::enable_if_t<isBidirectional and dummy, int> =0>
constexpr decltype(auto) operator--()
{
if constexpr (Dune::models<Impl::Concepts::BaseIterDecrementOp, DerivedIterator>())
{
--(IteratorFacadeAccess::baseIterator(derived()));
return derived();
}
else if constexpr (Dune::models<Impl::Concepts::IterAdvanceOp<difference_type>, DerivedIterator>())
{
derived() -= 1;
return derived();
}
else
static_assert(AlwaysFalse<It>::value,
"Derived class does not implement `--it`, `--(it.baseIterator())`, or `it-=1` for mutable `it` required by IteratorFacade<..., std::bidirectional_iterator_tag, ...>.");
}
/**
* @brief Postdecrement operator.
*
* Only enabled for bidirectional and random-access iterators.
*/
template<bool dummy=true, std::enable_if_t<isBidirectional and dummy, int> =0>
constexpr DerivedIterator operator--(int)
{
DerivedIterator tmp(derived());
--derived();
return tmp;
}
/**
* @brief Dereference element with given offset form this iterator
* @param n The distance to the element.
* @return The element at that distance.
*
* Only enabled for random-access iterators.
*/
template<bool dummy=true, std::enable_if_t<isRandomAccess and dummy, int> =0>
constexpr reference operator[](difference_type n) const
{
return *(derived()+n);
}
/**
* @brief Increment iterator by given value
*
* Only enabled for random-access iterators.
*/
template<bool dummy=true, std::enable_if_t<isRandomAccess and dummy, int> =0>
constexpr decltype(auto) operator+=(difference_type n)
{
if constexpr (Dune::models<Impl::Concepts::BaseIterAdvanceOp<difference_type>, DerivedIterator>())
{
IteratorFacadeAccess::baseIterator(derived()) += n;
return derived();
}
else
static_assert(AlwaysFalse<It>::value,
"Derived class does not implement `it+=` or `it.baseIterator()+=` for mutable `it` required by IteratorFacade<..., std::random_access_iterator_tag, ...>.");
}
/**
* @brief Create iterator incremented by given value
*
* Only enabled for random-access iterators.
*/
template<bool dummy=true, std::enable_if_t<isRandomAccess and dummy, int> =0>
constexpr DerivedIterator operator+(difference_type n) const
{
DerivedIterator tmp(derived());
tmp += n;
return tmp;
}
/**
* @brief Create iterator incremented by given value
*
* Only enabled for random-access iterators.
*/
template<bool dummy=true, std::enable_if_t<isRandomAccess and dummy, int> =0>
friend constexpr DerivedIterator operator+(difference_type n, const IteratorFacade& it)
{
DerivedIterator tmp(it.derived());
tmp += n;
return tmp;
}
/**
* @brief Decrement iterator by given value
*
* Only enabled for random-access iterators.
*/
template<bool dummy=true, std::enable_if_t<isRandomAccess and dummy, int> =0>
constexpr DerivedIterator& operator-=(difference_type n)
{
derived() += (-n);
return derived();
}
/**
* @brief Create iterator decremented by given value
*
* Only enabled for random-access iterators.
*/
template<bool dummy=true, std::enable_if_t<isRandomAccess and dummy, int> =0>
constexpr DerivedIterator operator-(difference_type n) const
{
DerivedIterator tmp(derived());
tmp -= n;
return tmp;
}
};
/**
* @brief Equality comparison for IteratorFacade
*
* This operation is defined if the derived
* iterator classes T1 and T2 are interoperable, i.e.
* if T1 is convertible to T2 or vice versa and provide
* `it1.equals(t2)` or `it2.equals(t1)`. Alternatively they
* may provide `it1.baseIterator() == it2.baseIterator()`
* for two const iterators.
*/
template<class T1, class T2, class C, class V1, class V2, class R1, class R2, class P1, class P2, class D1, class D2>
constexpr auto operator==(const IteratorFacade<T1,C,V1,R1,P1,D1>& it1, const IteratorFacade<T2,C,V2,R2,P2,D2>& it2)
{
const T1& derivedIt1 = IteratorFacadeAccess::derived(it1);
const T2& derivedIt2 = IteratorFacadeAccess::derived(it2);
if constexpr (Dune::models<Impl::Concepts::BaseIterEqualsOp, T1, T2>())
return IteratorFacadeAccess::baseIterator(derivedIt1) == IteratorFacadeAccess::baseIterator(derivedIt2);
else
static_assert(AlwaysFalse<T1>::value,
"Derived class does not implement `it1==it2` or `it1.baseIterator()==it2.baseIterator()` for const `it1` and `it2` required by IteratorFacade<..., std::forward_iterator_tag, ...>.");
}
/**
* @brief Inequality comparison for IteratorFacade
*
* This operation is implemented as `not(it1==it2)` if the
* passed iterators support this operation (cf. documentation
* of `operator==`).
*/
template<class T1, class T2, class C, class V1, class V2, class R1, class R2, class P1, class P2, class D1, class D2,
std::enable_if_t< Dune::models<Impl::Concepts::IterEqualsOp,T1, T2>() , int> =0>
constexpr bool operator!=(const IteratorFacade<T1,C,V1,R1,P1,D1>& it1, const IteratorFacade<T2,C,V2,R2,P2,D2>& it2)
{
const T1& derivedIt1 = IteratorFacadeAccess::derived(it1);
const T2& derivedIt2 = IteratorFacadeAccess::derived(it2);
return not(derivedIt1 == derivedIt2);
}
/**
* @brief Difference for two IteratorFacade objects
*
* This operation is defined if the derived
* iterator classes T1 and T2 are interoperable, i.e.
* if T1 is convertible to T2 or vice versa and provide
* `it1.distanceTo(t2)` or `it2.distanceTo(t1)`. Alternatively they
* may provide `it1.baseIterator() - it2.baseIterator()`
* for two const iterators.
*/
template<class T1, class T2, class C, class V1, class V2, class R1, class R2, class P1, class P2, class D>
constexpr auto operator-(const IteratorFacade<T1,C,V1,R1,P1,D>& it1, const IteratorFacade<T2,C,V2,R2,P2,D>& it2)
{
const T1& derivedIt1 = IteratorFacadeAccess::derived(it1);
const T2& derivedIt2 = IteratorFacadeAccess::derived(it2);
if constexpr (Dune::models<Impl::Concepts::BaseIterDistanceOp<D>,T1, T2>())
return D(IteratorFacadeAccess::baseIterator(derivedIt1) - IteratorFacadeAccess::baseIterator(derivedIt2));
else
static_assert(AlwaysFalse<T1>::value,
"Derived class does not implement `it1-it2` or `it1.baseIterator()-it2.baseIterator()` for const `it1` and `it2` required by IteratorFacade<..., std::random_access_iterator_tag, ...>.");
}
/**
* @brief Comparison for IteratorFacade
*
* This operation is implemented as `(it1-it2)<0` if the
* passed iterators support this operation (cf. documentation
* of `operator-`).
*/
template<class T1, class T2, class C, class V1, class V2, class R1, class R2, class P1, class P2, class D1, class D2,
std::enable_if_t< Dune::models<Impl::Concepts::IterDistanceOp<D1>,T1, T2>() , int> =0>
constexpr bool operator<(const IteratorFacade<T1,C,V1,R1,P1,D1>& it1, const IteratorFacade<T2,C,V2,R2,P2,D2>& it2)
{
const T1& derivedIt1 = IteratorFacadeAccess::derived(it1);
const T2& derivedIt2 = IteratorFacadeAccess::derived(it2);
return (derivedIt1 - derivedIt2) < D1(0);
}
/**
* @brief Comparison for IteratorFacade
*
* This operation is implemented as `(it1-it2)<=0` if the
* passed iterators support this operation (cf. documentation
* of `operator-`).
*/
template<class T1, class T2, class C, class V1, class V2, class R1, class R2, class P1, class P2, class D1, class D2,
std::enable_if_t< Dune::models<Impl::Concepts::IterDistanceOp<D1>,T1, T2>() , int> =0>
constexpr bool operator<=(const IteratorFacade<T1,C,V1,R1,P1,D1>& it1, const IteratorFacade<T2,C,V2,R2,P2,D2>& it2)
{
const T1& derivedIt1 = IteratorFacadeAccess::derived(it1);
const T2& derivedIt2 = IteratorFacadeAccess::derived(it2);
return (derivedIt1 - derivedIt2) <= D1(0);
}
/**
* @brief Comparison for IteratorFacade
*
* This operation is implemented as `(it1-it2)>0` if the
* passed iterators support this operation (cf. documentation
* of `operator-`).
*/
template<class T1, class T2, class C, class V1, class V2, class R1, class R2, class P1, class P2, class D1, class D2,
std::enable_if_t< Dune::models<Impl::Concepts::IterDistanceOp<D1>,T1, T2>() , int> =0>
constexpr bool operator>(const IteratorFacade<T1,C,V1,R1,P1,D1>& it1, const IteratorFacade<T2,C,V2,R2,P2,D2>& it2)
{
const T1& derivedIt1 = IteratorFacadeAccess::derived(it1);
const T2& derivedIt2 = IteratorFacadeAccess::derived(it2);
return (derivedIt1 - derivedIt2) > D1(0);
}
/**
* @brief Comparison for IteratorFacade
*
* This operation is implemented as `(it1-it2)>=0` if the
* passed iterators support this operation (cf. documentation
* of `operator-`).
*/
template<class T1, class T2, class C, class V1, class V2, class R1, class R2, class P1, class P2, class D1, class D2,
std::enable_if_t< Dune::models<Impl::Concepts::IterDistanceOp<D1>,T1, T2>() , int> =0>
constexpr bool operator>=(const IteratorFacade<T1,C,V1,R1,P1,D1>& it1, const IteratorFacade<T2,C,V2,R2,P2,D2>& it2)
{
const T1& derivedIt1 = IteratorFacadeAccess::derived(it1);
const T2& derivedIt2 = IteratorFacadeAccess::derived(it2);
return (derivedIt1 - derivedIt2) >= D1(0);
}
/**
* @brief Alias for the CRTP-Mixing class IteratorFacade
*
* In contrast to the IteratorFacade template that requires
* to pass all types that characterize the iterator as separate
* template parameters, this alias allows to pass them as an
* iterator traits class of the form
*
* @code
* struct IteratorTraits {
* using iterator_category = [...];
* using reference = [...];
* using value_type = [...];
* using pointer = [...];
* using difference_type = [...];
* };
* @endcode
*
* that mimics `std::iterator_traits<IteratorImpl>`.
*
* \tparam IteratorImpl The derived iterator class
* \tparam IteratorTraits The iterator traits class
*/
template<class IteratorImpl, class IteratorTraits>
using IteratorFacadeForTraits = Dune::IteratorFacade<
IteratorImpl,
typename IteratorTraits::iterator_category,
typename IteratorTraits::value_type,
typename IteratorTraits::reference,
typename IteratorTraits::pointer,
typename IteratorTraits::difference_type>;
/**
* \brief An iterator_traits class providing sensible defaults
*
* \tparam IteratorCategory Category of the iterator, e.g. std::forward_iterator_tag
* \tparam Reference Reference type returns when dereferencing the iterator
*
* This provides default types for `value_type`, `pointer`, and `difference_type`
* that should work for most iterator implementations including proxy iterators
* where the proxy types implement the `Dune::AutonomousValue` mechanism.
* The `value_type` is derived as `Dune::AutonomousValue<reference>`.
* The pointer type is a plain `value_type*` pointer if the `reference`
* is an l-value reference. Otherwise `Dune::ProxyArrowResult<reference>`
* is used to provide a suitable return type for `operator->` for proxies.
*/
template<class IteratorCategory, class Reference, class DifferenceType = std::ptrdiff_t>
struct DefaultIteratorTraits
{
using iterator_category = IteratorCategory;
using reference = Reference;
using value_type = Dune::AutonomousValue<reference>;
using pointer = std::conditional_t<std::is_lvalue_reference_v<reference>, value_type*, Dune::ProxyArrowResult<reference>>;
using difference_type = DifferenceType;
};
/** @} */
}
#endif
|