Modify ↓
Opened 11 years ago
Closed 11 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 Changed 11 years ago by Mat
comment:2 Changed 11 years ago by anonymous
I would add it as a keyword instead (like And, Or and Not):
$A = $B XOR $C $D = $E XNOR $F
comment:3 Changed 11 years ago by mlipok
it would be good
comment:4 Changed 11 years ago by guinness
- Resolution set to Rejected
- Status changed from new to closed
What Mat said.
Guidelines for posting comments:
- You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
- In-depth discussions should take place on the forum.
For more information see the full version of the ticket guidelines here.
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.