What does `fastabs(z::Complex)` do?

The use case here is for special functions where you want to do something different for big and small inputs. Specifically, fastabs will be off by a maximum factor of sqrt(2), so it’s very useful when a function needs to do something different for small inputs.

2 Likes