Babel.Core.BOOL.nor_not C# (CSharp) Méthode

nor_not() public static méthode

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