﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2630	_XOR()  and _XNOR() - new function	mlipok		"
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
}}}

"	Feature Request	closed		Standard UDFs		None	Rejected		
