a4e07f40c5cee5cd0a500a584a340b1c78cc7ab5
[mono.git] / mcs / class / corlib / System / Funcs.cs
1 //
2 // System.Func.cs
3 //
4 // Authors:
5 //      Alejandro Serrano "Serras" (trupill@yahoo.es)
6 //      Marek Safar (marek.safar@gmail.com)
7 //
8
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR TArg PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 //
27
28 using System.Runtime.CompilerServices;
29
30 namespace System {
31
32 #if NET_4_0
33 #if MOBILE
34         [TypeForwardedFrom (Consts.AssemblySystem_Core)]
35 #elif NET_4_0
36         [TypeForwardedFrom (Consts.AssemblySystemCore_3_5)]
37 #endif
38         public delegate TResult Func<out TResult> ();
39         
40 #if MOBILE
41         [TypeForwardedFrom (Consts.AssemblySystem_Core)]
42 #elif NET_4_0
43         [TypeForwardedFrom (Consts.AssemblySystemCore_3_5)]
44 #endif
45         public delegate TResult Func<in T, out TResult> (T arg);
46         
47 #if MOBILE
48         [TypeForwardedFrom (Consts.AssemblySystem_Core)]
49 #elif NET_4_0
50         [TypeForwardedFrom (Consts.AssemblySystemCore_3_5)]
51 #endif
52         public delegate TResult Func<in T1, in T2, out TResult> (T1 arg1, T2 arg2);
53         
54 #if MOBILE
55         [TypeForwardedFrom (Consts.AssemblySystem_Core)]
56 #elif NET_4_0
57         [TypeForwardedFrom (Consts.AssemblySystemCore_3_5)]
58 #endif
59         public delegate TResult Func<in T1, in T2, in T3, out TResult> (T1 arg1, T2 arg2, T3 arg3);
60         
61 #if MOBILE
62         [TypeForwardedFrom (Consts.AssemblySystem_Core)]
63 #elif NET_4_0
64         [TypeForwardedFrom (Consts.AssemblySystemCore_3_5)]
65 #endif
66         public delegate TResult Func<in T1, in T2, in T3, in T4, out TResult> (T1 arg1, T2 arg2, T3 arg3, T4 arg4);
67         
68         public delegate TResult Func<in T1, in T2, in T3, in T4, in T5, out TResult> (T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5);
69         public delegate TResult Func<in T1, in T2, in T3, in T4, in T5, in T6, out TResult> (T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6);
70         public delegate TResult Func<in T1, in T2, in T3, in T4, in T5, in T6, in T7, out TResult> (T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7);
71         public delegate TResult Func<in T1, in T2, in T3, in T4, in T5, in T6, in T7, in T8, out TResult> (T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8);
72 #else
73         // Used internally
74         delegate TResult Func<T1, T2, T3, TResult> (T1 arg1, T2 arg2, T3 arg3);
75 #endif
76 }