[densevector] use ADL to find max, min, abs and similar
we first import function like std::max into the local scope and the call max(a,b) instead of std::max(a,b). This allows to match specializations for other data types via ADL.
Please register or sign in to comment