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

nor() public static method

public static nor ( bool self, bool b ) : bool
self bool
b bool
return bool
        public static bool nor(bool self, bool b)
        {
            return !(self || b);
        }