More main progress; tons of headers & stuff

Former-commit-id: a6e365791b
This commit is contained in:
2022-09-13 00:26:54 -04:00
parent c6823f56cd
commit 329618c585
95 changed files with 1673 additions and 202 deletions

17
include/rstl/math.hpp Normal file
View File

@@ -0,0 +1,17 @@
#ifndef _RSTL_MATH_HPP
#define _RSTL_MATH_HPP
#include "types.h"
namespace rstl {
template < typename T >
static inline const T& max_val(const T& a, const T& b) {
return a > b ? a : b;
}
template < typename T >
static inline const T& min_val(const T& a, const T& b) {
return a < b ? a : b;
}
} // namespace rstl
#endif