true if each element of Group1 is identical to the one of Group2 at the same index
alias one = Group!(int, double); alias two = Group!(int, double); alias three = Group!(double, int); static assert (Compare!(one, two)); static assert (!Compare!(one, three));
Compares two groups for element identity