Click or drag to resize
Llvm.NET LogoContextGetFunctionType Method (ITypeRef, IEnumerableITypeRef, Boolean)

[This is preliminary documentation and is subject to change.]

Get an LLVM Function type (e.g. signature)

Namespace:  Llvm.NET
Assembly:  Llvm.NET (in Llvm.NET.dll) Version: 3.8.6158
Syntax
C#
public IFunctionType GetFunctionType(
	ITypeRef returnType,
	IEnumerable<ITypeRef> args,
	bool isVarArgs
)

Parameters

returnType
Type: Llvm.NET.TypesITypeRef
Return type of the function
args
Type: System.Collections.GenericIEnumerableITypeRef
Potentially empty set of function argument types
isVarArgs
Type: SystemBoolean
Flag to indicate if the method supports C/C++ style VarArgs

Return Value

Type: IFunctionType
Signature type for the specified signature
See Also