I would like the element-wise logical OR operator. I know "or" itself is not what I am looking for.
I am aware that AND corresponds to & and NOT, ~. But what about OR?
In my project there is a Logic evaluation section, it take input as a string which contains logical expressions (true/false) .
I want to evaluate this string and return a final Boolean value.
string Logic="1&0|1&(0&1)"
//string Logic="…