sbool isBetween_double(double x, double min, double max) { ret x >= min && x <= max; }