From 02d485c80fc6b3a229174027cd304b67c3f79b56 Mon Sep 17 00:00:00 2001
From: Thomas Fischer <thomas.fischer@ufz.de>
Date: Thu, 28 May 2020 11:30:48 +0200
Subject: [PATCH] [GL] Use std::any_of and std::all_of instead of raw loops.

---
 GeoLib/Polygon.cpp | 29 ++++++++++++++++-------------
 1 file changed, 16 insertions(+), 13 deletions(-)

diff --git a/GeoLib/Polygon.cpp b/GeoLib/Polygon.cpp
index 7c01731b302..b02580b6d2a 100644
--- a/GeoLib/Polygon.cpp
+++ b/GeoLib/Polygon.cpp
@@ -213,30 +213,33 @@ bool Polygon::containsSegment(GeoLib::LineSegment const& segment) const
 
 bool Polygon::isPolylineInPolygon(const Polyline& ply) const
 {
-    for (auto segment : ply) {
-        if (!containsSegment(segment)) {
-            return false;
-        }
-    }
-    return true;
+    return std::all_of(ply.begin(), ply.end(), [this](auto const& segment) {
+        return containsSegment(segment);
+    });
 }
 
 bool Polygon::isPartOfPolylineInPolygon(const Polyline& ply) const
 {
     const std::size_t ply_size (ply.getNumberOfPoints());
     // check points
-    for (std::size_t k(0); k < ply_size; k++) {
-        if (isPntInPolygon (*(ply.getPoint(k)))) {
+    for (std::size_t k(0); k < ply_size; k++)
+    {
+        if (isPntInPolygon(*(ply.getPoint(k))))
+        {
             return true;
         }
     }
 
     GeoLib::Point s;
-    for (auto polygon_seg : *this) {
-        for (auto polyline_seg : ply) {
-            if (GeoLib::lineSegmentIntersect(polyline_seg, polygon_seg, s)) {
-                return true;
-            }
+    for (auto polygon_seg : *this)
+    {
+        if (std::any_of(ply.begin(), ply.end(),
+                        [&polygon_seg, &s](auto const& polyline_seg) {
+                            return GeoLib::lineSegmentIntersect(polyline_seg,
+                                                                polygon_seg, s);
+                        }))
+        {
+            return true;
         }
     }
 
-- 
GitLab