Lolly 1.4.28
|
Go to the source code of this file.
Typedefs | |
typedef int | SI |
typedef unsigned int | SN |
typedef short | HI |
typedef unsigned short | HN |
typedef char | QI |
typedef unsigned char | QN |
typedef long long int | DI |
typedef unsigned long long int | DN |
Functions | |
SI | min (SI i, SI j) |
Returns the minimum of two signed integers. | |
SI | max (SI i, SI j) |
Returns the maximum of two signed integers. | |
DI | min (DI i, DI j) |
Returns the minimum of two signed integers. | |
DI | max (DI i, DI j) |
Returns the maximum of two signed integers. | |
double | min (double i, double j) |
Returns the minimum of two doubles. | |
double | max (double i, double j) |
Returns the maximum of two doubles. | |
defines basic type aliases and min/max function for these types.
Definition in file minmax.hpp.
Definition at line 10 of file minmax.hpp.
Definition at line 11 of file minmax.hpp.
Definition at line 12 of file minmax.hpp.
Definition at line 14 of file minmax.hpp.
Returns the minimum of two signed integers.
i | The first integer. |
j | The second integer. |
Definition at line 27 of file minmax.hpp.
Returns the maximum of two signed integers.
i | The first integer. |
j | The second integer. |
Definition at line 40 of file minmax.hpp.
Returns the minimum of two signed integers.
i | The first integer. |
j | The second integer. |
Definition at line 53 of file minmax.hpp.
Returns the maximum of two signed integers.
i | The first integer. |
j | The second integer. |
Definition at line 66 of file minmax.hpp.
|
inline |
Returns the minimum of two doubles.
i | The first double. |
j | The second double. |
Definition at line 79 of file minmax.hpp.
|
inline |
Returns the maximum of two doubles.
i | The first double. |
j | The second double. |
Definition at line 92 of file minmax.hpp.