MCPcopy Create free account
hub / github.com/comaps/comaps / NextIterInCycle

Function NextIterInCycle

libs/base/stl_helpers.hpp:376–381  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

374
375template <typename Iter>
376Iter NextIterInCycle(Iter it, Iter beg, Iter end)
377{
378 if (++it == end)
379 return beg;
380 return it;
381}
382
383template <typename Iter>
384Iter PrevIterInCycle(Iter it, Iter beg, Iter end)

Callers 4

IsPolygonCCWFunction · 0.85
IsDiagonalVisibleFunction · 0.85
GetPolygonAreaFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected