// Description: Number of points in a nearest-set
#ifndef PASTELSYS_NEARESTSET_N_H
#define PASTELSYS_NEARESTSET_N_H
#include "pastel/geometry/nearestset/nearestset_concept.h"
#include "pastel/sys/pointset/pointset_concept.h"
namespace Pastel
{
template <NearestSet_Concept NearestSet>
integer nearestSetN(const NearestSet& nearestSet)
{
return pointSetN(nearestSet);
}
}
#endif