BioC++ core-0.7.0
The Modern C++ libraries for Bioinformatics.
 
Loading...
Searching...
No Matches
bio::meta::floating_point Concept Reference

An arithmetic type that also satisfies std::is_floating_point_v<t>. More...

#include <bio/meta/concept/core_language.hpp>

Concept definition

template<typename t>
concept bio::meta::floating_point = arithmetic<t> && std::is_floating_point_v<t>
A type that satisfies std::is_arithmetic_v<t>.
Definition: core_language.hpp:62
An arithmetic type that also satisfies std::is_floating_point_v<t>.
Definition: core_language.hpp:69

Detailed Description