tinyexpr-plusplus
tinyexpr-plusplus copied to clipboard
AND and OR (and logical operators, if enabled) return NaN if any value is NaN
AND(TRUE, NA(), TRUE)
OR(TRUE, NA(), FALSE)
5 & NA
5 | NA
Should all result in NaN the way Excel does.