Modify ↓
Opened 12 years ago
Closed 12 years ago
#2630 closed Feature Request (Rejected)
_XOR() and _XNOR() - new function
| Reported by: | mlipok | Owned by: | |
|---|---|---|---|
| Milestone: | Component: | Standard UDFs | |
| Version: | Severity: | None | |
| Keywords: | Cc: |
Description
Please consider adding such a function:
http://www.autoitscript.com/forum/topic/153670-operator-xor-xnor/#entry1107426
to the UDF
; Author: AdamUL
Func _XOR($A, $B)
Return ($A Or $B) And (Not ($A And $B))
EndFunc
Func _XNOR($A, $B)
Return Not _XOR($A, $B)
EndFunc
Attachments (0)
Change History (4)
comment:1 by , 12 years ago
comment:2 by , 12 years ago
I would add it as a keyword instead (like And, Or and Not):
$A = $B XOR $C $D = $E XNOR $F
Note:
See TracTickets
for help on using tickets.

Or
BitXOR($A ? 1 : 0, $B ? 1 : 0)Generally if it can be done in one line then there really isn't a need to add it to the standard UDFs.