cpplab/include/bmath/math.hpp
2020-07-17 08:46:46 +01:00

15 lines
No EOL
204 B
C++

#pragma once
#include "../cpu/types.hpp"
namespace BMath
{
template <typename T>
class Math
{
public:
static T abs(T value);
static T min(T a, T b);
static T max(T a, T b);
};
} // namespace BMath