Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in argument-dependent-lookup

Argument-dependent lookup -- when is it done, what is searched, and how can you force (or prevent) it?

Should this function call be ambiguous?

How does ADL affect this piece of C++ code?

C++ ADL in nested namespaces with template function

Why doesn't a using directive affect ADL?

Range-Based For Loop and ADL

ADL with std::function: Can functions taking std::function objects be found via the types in the std::function's argument list?

Why does ADL take precedence over a function in 'std namespace' but is equal to function in user-defined namespace?

why swap() can work well when I don't call it with two pointer?

g++, bitfields and ADL

ADL does not work in constexpr functions (clang only)

ADL in case of equal-named member function

Argument-dependent lookup of dependent names

Does ADL work for the global namespace?

Argument-dependent lookup behaving unexpectedly on types aliased from another namespace

How to make a function template the least priority during ADL?

Is it possible to create a trait to answer if a type comes from std?

Doesn't ADL looks up static member functions?

Why some Boost functions don't need prefixing with namespace

Is it ok to put "using std::swap;" in a header?