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

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

public static IsPrimInterface ( IPersistentVector arglist ) : bool
arglist IPersistentVector
Результат bool
        public static bool IsPrimInterface(IPersistentVector arglist)
        {
            if (arglist.count() > 4)
                return false;

            for (int i = 0; i < arglist.count(); i++)
                if (IsPrimType(Compiler.TagOf(arglist.nth(i))))
                    return true;

            if (IsPrimType(Compiler.TagOf(arglist)))
                return true;

            return false;
        }