clojure.lang.CljCompiler.Ast.FnMethod.IsPrimType C# (CSharp) Метод

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

public static IsPrimType ( object x ) : bool
x object
Результат bool
        public static bool IsPrimType(object x)
        {
            Type t = x as Type ?? Compiler.PrimType(x as Symbol);

            if (t == typeof(long) || t == typeof(double))
                return true;

            return false;
        }