Returns true if the string length is smaller than or equals the given value
bool minLength(int min) { return length >= min; }