diff --git a/STL_Extension/include/CGAL/Concatenate_iterator.h b/STL_Extension/include/CGAL/Concatenate_iterator.h index 4db1bb3d6cf..ebfe3f294df 100644 --- a/STL_Extension/include/CGAL/Concatenate_iterator.h +++ b/STL_Extension/include/CGAL/Concatenate_iterator.h @@ -93,6 +93,25 @@ public: return tmp; } + Self operator+(std::size_t offset) const + { + // todo: make this a O(1) time operation + Self res(*this); + for(int i=0;i