22 namespace AgeBrackets {
27 constexpr
static inline double m_lower = 0.0;
28 constexpr
static inline double m_upper = 3.0;
36 constexpr
static inline double m_lower = 3.0;
37 constexpr
static inline double m_upper = 6.0;
39 static bool HasAge(
double age) {
return age >= m_lower && age <
m_upper; }
45 constexpr
static inline double m_lower = 6.0;
46 constexpr
static inline double m_upper = 18.0;
48 static bool HasAge(
double age) {
return age >= m_lower && age <
m_upper; }
54 constexpr
static inline double m_lower = 18.0;
55 constexpr
static inline double m_upper = 26.0;
57 static bool HasAge(
double age) {
return age >= m_lower && age <
m_upper; }
63 constexpr
static inline double m_lower = 18U;
64 constexpr
static inline double m_upper = 65u;
66 static bool HasAge(
double age) {
return age >= m_lower && age <
m_upper; }
static bool HasAge(double age)
K12school with lower (inclusive) and upper (exclusive) age bracket.
static bool HasAge(double age)
static bool HasAge(double age)
static constexpr double m_upper
DayCare with lower (inclusive) and upper (exclusive) age bracket..
College with lower (inclusive) and upper (exclusive) age bracket.
static bool HasAge(double age)
static constexpr double m_lower
static bool HasAge(double age)
Preschool with lower (inclusive) and upper (exclusive) age bracket.
Namespace for the simulator and related classes.
College with lower (inclusive) and upper (exclusive) age bracket.