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

or_not() public static method

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