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

not() public static method

public static not ( bool self ) : bool
self bool
return bool
        public static bool not(bool self)
        {
            return !self;
        }