flippy
a c++20 package for dynamically triangulated membrane simulations.
Loading...
Searching...
No Matches
fp::indexing_number Concept Reference

Here we implement the concepts of a positive integer number that is used throughout the code for indexing. More...

#include <custom_concepts.hpp>

Concept definition

template<class T>
concept fp::indexing_number = std::is_unsigned_v<T> && std::is_integral_v<T>
Here we implement the concepts of a positive integer number that is used throughout the code for inde...
Definition custom_concepts.hpp:31

Detailed Description

Here we implement the concepts of a positive integer number that is used throughout the code for indexing.

Template Parameters
TThis concept requires the type T to be unsigned and an integral type.