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

nand_not() public static method

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