23#ifndef VCL_MESH_VIEWS_ELEMENTS_EDGE_H
24#define VCL_MESH_VIEWS_ELEMENTS_EDGE_H
26#include <vclib/mesh/requirements/edge_requirements.h>
58 RemovePtr<typename std::ranges::iterator_t<Rng>::value_type>>>;
65 constexpr EdgesView() =
default;
67 template<EdgeMeshConcept R>
68 friend constexpr auto operator|(R&& r, EdgesView)
84inline constexpr detail::EdgesView
edges;
A concept that checks whether a class has (inherits from) an Edge class.
Definition edge.h:111
The EdgePointerRangeConcept evaluates to true if Rng is a valid Range on Edge Pointers.
Definition edge.h:54
The EdgeRangeConcept evaluates to true if Rng is a valid Range on Edges.
Definition edge.h:40
The IsPointer concept is satisfied if T is a Pointer, even if the type T is a reference to a pointer.
Definition pointers.h:54
Utility concept that is evaluated true if T is a range, e.g. if has a begin and an end.
Definition range.h:39
constexpr detail::EdgesView edges
A view that allows to iterate overt the Edge elements of an object.
Definition edge.h:84