示例#1
0
 // unpack them back
 var(@this, state) = param;
示例#2
0
 return(method(@this, hIcon, pszToolTip));
示例#3
0
 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
 internal static (string Left, string Text, string Right) Center(this string @this, int areaLength) => CenterValue(@this, areaLength);
示例#5
0
 public static Result <(A, B)> Zip <A, B>(this Result <A> @this, Result <B> other) => Tuple <A, B>().ZipWith(@this, other);
示例#6
0
 public static IO <(A, B)> Zip <A, B>(this IO <A> @this, IO <B> other) => Tuple <A, B>().ZipWith(@this, other);
示例#7
0
 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);
 await Task.WhenAll(@this, other);
示例#10
0
 public static Identity <(A, B)> Zip <A, B>(this Identity <A> @this, Identity <B> other) => Tuple <A, B>().ZipWith(@this, other);