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 ?