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

Here we implement the concepts of a floating point number. More...

#include <custom_concepts.hpp>

Concept definition

template<class T>
concept fp::floating_point_number = std::is_floating_point_v<T>
Here we implement the concepts of a floating point number.
Definition custom_concepts.hpp:24

Detailed Description

Here we implement the concepts of a floating point number.

This concept is equivalent to std::floating_point. However, not all c++20 compilers implement these features yet. In particular some apple clang versions that are technically c++20 capable.

Template Parameters
TThis concept requires the type T to be a floating point number.