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

and_not() public static méthode

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