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

implies() public static method

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