Babel.Core.BOOL.xor C# (CSharp) Method

xor() public static method

public static xor ( bool self, bool b ) : bool
self bool
b bool
return bool
        public static bool xor(bool self, bool b)
        {
            return self != b;
        }