How to compare TTuple templates?

Hello, is it possible to compare two TTuple variables if they are the same template? When I try building with a comparison operator I get an error stating
“binary ‘==’: no operator found which takes a left-hand operand of type ‘const TTuple<>’ (or there is no acceptable conversion)”

I wrote some example code of what I’m talking about to help get the idea of what I’m asking

`
TTuple TupA = MakeTuple(5.0f, Cast(this), true);
TTuple TupB = MakeTuple(100.0f, “Example”, 15);

// I know this should be false, but ‘==’ seems to cause the error so how do I compare them?
if(TupA == TupB)
{

}
`