static assert(isHomogeneousTupleOf!(Tuple!(int, int, int), int)); static assert(isHomogeneousTupleOf!(Tuple!(float, float, float), float)); static assert(!isHomogeneousTupleOf!(Tuple!(float, float, float), int));
See Implementation