示例#1
0
 public static TypeLink IsRetValOf(this FuzzyType first, FuzzyLambda second)
 {
     return first.IsIdenticalTo(second.ReturnValue);
 }
示例#2
0
 public static TypeLink IsArgOf(this FuzzyType first, FuzzyLambda second, String argName)
 {
     return first.IsIdenticalTo(second.Args[argName]);
 }