In Ruby I can do:
[1,2,3,4].include?(4) #=>True
In Haskell I can do :
4 `elem` [1,2,3,4] #=> True
What should I do in C++?
|
|
|
There isn't a built-in function doing exactly that.
There is You could always roll your own, to get syntax similar to JIa3ep's suggestion, but without using
Then you can simply do this to use it:
|
|||||||||||||
|
|
Here an example using find:
|
|||||||||||||||||||
|
|
If the vector is ordered, you can also use std::binary_search.
|
|||
|
|
|
To get similar syntax as in OP's question:
|
|||||||||||||||||||||
|
|
You could use std::set This has a find() method. |
|||||||||||||
|