private bool Equals(IntrinsicVectorTypeSymbol other) { return base.Equals(other) && NumComponents == other.NumComponents; }
private bool Equals(IntrinsicVectorTypeSymbol other) { return(base.Equals(other) && NumComponents == other.NumComponents); }
public BoundGenericVectorType(IntrinsicVectorTypeSymbol vectorSymbol, BoundScalarType scalarType) : base(BoundNodeKind.IntrinsicGenericVectorType, vectorSymbol) { VectorSymbol = vectorSymbol; ScalarType = scalarType; }
public BoundVectorType(IntrinsicVectorTypeSymbol vectorSymbol) : base(BoundNodeKind.IntrinsicGenericVectorType, vectorSymbol) { VectorSymbol = vectorSymbol; }