fn is_pure_binary_op(p: &Punct) -> bool
Returns true for operators that are clearly binary and NOT unary-capable in R. +, -, !, ~, ? are unary-capable so we return false.
true
+
-
!
~
?
false