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

and_not() public static method

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