public void Add(DataType another) { eltType = UnionType.Union(eltType, another); positional.Add(another); }
public void Add(DataType key, DataType val) { KeyType = UnionType.Union(KeyType, key); ValueType = UnionType.Union(ValueType, val); }