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

nor_not() public static method

public static nor_not ( bool self, bool b ) : bool
self bool
b bool
return bool
        public static bool nor_not(bool self, bool b)
        {
            return !self && b;
        }