Example #1
0
 internal type Canonicalize(type type)
 {
     return(new type(from c in type.Constraints select Canonicalize(c), Canonicalize(type.Term)));
 }
Example #2
0
 protected bool Equals(type other)
 {
     return(_constraints.SequenceEqual(other._constraints) && Term.Equals(other.Term));
 }