// Description: Number of points in a point-set
// DocumentationOf: pointset_concept.h
#ifndef PASTELSYS_POINTSET_N_H
#define PASTELSYS_POINTSET_N_H
#include "pastel/sys/pointset/pointset_concept.h"
#include "pastel/sys/pointset/pointset_locator.h"
namespace Pastel
{
template <Range_Concept Set>
integer pointSetN(const Set& pointSet)
{
return rangeSize(pointSetRange(pointSet));
}
}
#endif