Go to the source code of this file.
Namespaces | |
namespace | oasys |
Defines | |
#define | MINMAX(_Type) |
#define MINMAX | ( | _Type | ) |
Value:
\ inline _Type \ min(_Type a, _Type b) \ { \ return (a < b) ? a : b; \ } \ \ inline _Type \ max(_Type a, _Type b) \ { \ return (a > b) ? a : b; \ }
Definition at line 47 of file IntUtils.h.