You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The library currently supports only arguments of type:
char
unsigned char
short
unsigned short
int
unsigned int
long
unsigned long
float
double
long double
bool
std::string
std::vector<std::string>
However, I see two big improvements:
restrict to a subset of values of a type (e.g., an int variable that can only assume the values: {-1000, 0, 1000} or a std::string that can only assume the values: {"red", "green", "blue"}).
The library currently supports only arguments of type:
std::vector<std::string>
However, I see two big improvements:
int
variable that can only assume the values:{-1000, 0, 1000}
or astd::string
that can only assume the values:{"red", "green", "blue"}
).See also #157
The text was updated successfully, but these errors were encountered: