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

and_not() 공개 정적인 메소드

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