StormByte C++ Library 1.2.0
StormByte is a comprehensive, cross-platform C++ library aimed at easing system programming, configuration management, logging, and database handling tasks. This library provides a unified API that abstracts away the complexities and inconsistencies of different platforms (Windows, Linux).
Loading...
Searching...
No Matches
StormByte::Type::FloatingPoint Concept Reference

Floating-point type (float, double, long double). More...

#include <StormByte/type_traits/categories.hxx>

Concept definition

template<typename T>
concept StormByte::Type::FloatingPoint = std::is_floating_point_v<T>
Floating-point type (float, double, long double).
Definition categories.hxx:151

Detailed Description

Floating-point type (float, double, long double).

Template Parameters
TType to test.
template<Type::FloatingPoint T>
T multiply(T a, T b) { return a * b; }