Babel.Core.BOOL.implies C# (CSharp) 메소드

implies() 공개 정적인 메소드

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