Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in argument-dependent-lookup

Why does "xxx::function();" not work but "using namespace xxx; function();" does?

Why do `std::ranges::size` require a non-const method when using ADL?

Simulating argument-dependent lookup for template arguments

Force adl to not use function from specific namespace

ADL related GCC 4.7.2 issue with expression SFINAE

Why does ADL not work with an unnamed initializer_list?

ADL name lookup problem, is using std::swap; swap(a,b) related to function overloading or inner scope function hide outer scope function?

Weird behaviour of Koenig Lookup

Why is adl preferring the 'boost::range_detail::operator|' over the local 'operator|'?

SFINAE-based Operator Overloading across Namespaces

Undefined class template is not instantiated to check for friend functions

C++ weird templates/namespaces behavior

Why doesn't MSVC class' find friend function via ADL, preferring calling a lambda?

ADL lookup inside a class (template) member function body

Implementing member swap() in terms of non-member swap()

why does 'using namespace' not take priority when in a namespace

How to check at compile time for the existence of a global-scope function accepting given argument types?

How to fix previously-working injected template friend function?