1, +
static int? assertPositiveInt(int? in_num) { if (null != in_num && in_num > 0) { return in_num; } return null; }