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

or_rout() public static method

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