Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mdoc/mdoc.Test/SampleClasses/FunctionPointers.cs')
-rw-r--r--mdoc/mdoc.Test/SampleClasses/FunctionPointers.cs31
1 files changed, 31 insertions, 0 deletions
diff --git a/mdoc/mdoc.Test/SampleClasses/FunctionPointers.cs b/mdoc/mdoc.Test/SampleClasses/FunctionPointers.cs
new file mode 100644
index 00000000..9e84c0b8
--- /dev/null
+++ b/mdoc/mdoc.Test/SampleClasses/FunctionPointers.cs
@@ -0,0 +1,31 @@
+using System;
+
+namespace mdoc.Test.SampleClasses
+{
+ public class FunctionPointers
+ {
+ public unsafe static R UnsafeCombine<T1, T2, R>(delegate*<T1, T2, R> combinator, T1 left, T2 right) =>
+ combinator(left, right);
+
+ public unsafe static R UnsafeCombineOverload<R>(delegate*<IntPtr, UIntPtr, R> combinator, IntPtr left, UIntPtr right) =>
+combinator(left, right);
+
+ public unsafe static R UnsafeCombine1<T1, T2, R>(delegate* unmanaged[Cdecl]<T1, T2, R> combinator, T1 left, T2 right) =>
+ combinator(left, right);
+
+ public unsafe static R UnsafeCombine2<T1, T2, T3, R>(delegate* unmanaged[Stdcall]<ref T1, in T2, out T3, R> combinator, T1 left, T2 right, T3 outVar) =>
+ combinator(ref left, right, out outVar);
+
+ public unsafe static R UnsafeCombine3<T1, T2, R>(delegate* unmanaged[Fastcall]<T1, T2, ref R> combinator, T1 left, T2 right) =>
+ combinator(left, right);
+
+ public unsafe static R UnsafeCombine4<T1, T2, R>(delegate* unmanaged[Thiscall]<T1, T2, ref readonly R> combinator, T1 left, T2 right) =>
+combinator(left, right);
+
+ public unsafe static void UnsafeCombine5(delegate* unmanaged[Cdecl]<void> combinator) => combinator();
+
+ public unsafe static void UnsafeCombine6(delegate*<delegate* unmanaged[Fastcall]<string, int>, delegate*<string, int>> combinator) => combinator(null);
+
+ public unsafe static delegate*<delegate* unmanaged[Thiscall]<string, int>, delegate*<string, int>> UnsafeCombine7() => throw null;
+ }
+} \ No newline at end of file