isapprox(Tuple{T}) not working

Wondering while isapprox() works for scalar and arrays but not for tuples:

[-6.9999999998,-1.000000000002] ≈ [-7,-1]      # true
(-6.9999999998,-1.000000000002) ≈ (-7,-1)      # MethodError
([-6.9908,-1.00152],21.96624)   ≈ ([-7,-1],22) # MethodError

Any workaround without looping ?

Ok, this is already discussed here and here ( to sum up, it is preferred to leave explicit collecting if one want as is it not clear with a tuple if one want elementwise approximation, or approximation of the whole tuple)

1 Like