Zack Buhman c86fcbd6af editor: add example
This adds a simple text editor with basic visual line-editing
capabilities.
2023-06-08 22:50:07 +00:00

14 lines
195 B
C++

#pragma once
template <typename T>
static inline constexpr T min(T a, T b)
{
return a > b ? b : a;
}
template <typename T>
static inline constexpr T max(T a, T b)
{
return a > b ? a : b;
}