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

implies() public static méthode

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