In Python, I can use the 'not' and 'in' operators to do something like
lisst = ['a', 'b', 'c']
if fuuuuu not in lisst:
do_something()
Is there an equivalent in C++, for like simple vectors and arrarys and whatnot?
In Python, I can use the 'not' and 'in' operators to do something like
lisst = ['a', 'b', 'c']
if fuuuuu not in lisst:
do_something()
Is there an equivalent in C++, for like simple vectors and arrarys and whatnot?