ABT.FunctionType.Create C# (CSharp) Метод

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

public static Create ( ExprType returnType, ImmutableList args, System.Boolean hasVarArgs ) : FunctionType
returnType ExprType
args ImmutableList
hasVarArgs System.Boolean
Результат FunctionType
        public static FunctionType Create(ExprType returnType, ImmutableList<Tuple<Option<String>, ExprType>> args, Boolean hasVarArgs) =>
            Create(returnType, args.Select(_ => Tuple.Create(_.Item1.IsSome ? _.Item1.Value : "", _.Item2)).ToList(), hasVarArgs);

Same methods

FunctionType::Create ( ExprType returnType ) : FunctionType
FunctionType::Create ( ExprType ret_type, ExprType>.List args, System.Boolean is_varargs ) : FunctionType