CSScheme.SchemeUtils.truth C# (CSharp) Метод

truth() публичный статический Метод

public static truth ( bool x ) : System.Boolean
x bool
Результат System.Boolean
        public static Boolean truth(bool x)
        {
            return x ? TRUE : FALSE;
        }

Same methods

SchemeUtils::truth ( Object x ) : bool