コード例 #1
0
ファイル: PhysicsSystem.cs プロジェクト: RaZeR-RBI/ignis
 // unpack them back
 var(@this, state) = param;
コード例 #2
0
ファイル: Win32.cs プロジェクト: mynick777/NRegFreeCom
 return(method(@this, hIcon, pszToolTip));
コード例 #3
0
ファイル: Either.cs プロジェクト: endofunk/Endofunk-FX
 public static Either <L, (A, B)> Zip <L, A, B>(this Either <L, A> @this, Either <L, B> other) => Tuple <A, B>().ZipWith(@this, other);
コード例 #4
0
ファイル: StringExtension.cs プロジェクト: jroliveira/chess
 internal static (string Left, string Text, string Right) Center(this string @this, int areaLength) => CenterValue(@this, areaLength);
コード例 #5
0
ファイル: Result.cs プロジェクト: endofunk/Endofunk-FX
 public static Result <(A, B)> Zip <A, B>(this Result <A> @this, Result <B> other) => Tuple <A, B>().ZipWith(@this, other);
コード例 #6
0
ファイル: IO.cs プロジェクト: endofunk/Endofunk-FX
 public static IO <(A, B)> Zip <A, B>(this IO <A> @this, IO <B> other) => Tuple <A, B>().ZipWith(@this, other);
コード例 #7
0
ファイル: Lazy.cs プロジェクト: endofunk/Endofunk-FX
 public static Lazy <(A, B)> Zip <A, B>(this Lazy <A> @this, Lazy <B> other) => Tuple <A, B>().ZipWith(@this, other);
コード例 #8
0
 public static Maybe <(A, B)> Zip <A, B>(this Maybe <A> @this, Maybe <B> other) => Tuple <A, B>().ZipWith(@this, other);
コード例 #9
0
 await Task.WhenAll(@this, other);
コード例 #10
0
ファイル: Identity.cs プロジェクト: endofunk/Endofunk-FX
 public static Identity <(A, B)> Zip <A, B>(this Identity <A> @this, Identity <B> other) => Tuple <A, B>().ZipWith(@this, other);