Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in argument-dependent-lookup

Non pre-declared function call works for class types but not primitive types

Which function is used to initialize the static class member?

Why does endl(std::cout) compile

Is it possible to take the address of an ADL function?

Comparison operator for std::vector<T> fails to find comparison operator for T

Different behavior for qualified and unqualified name lookup for template

Ambiguity between function and function in namespace with same argument

Why is ADL not working with Boost.Range?

Where should I define operator >> for my specialization of std::pair?

C++ operator lookup rules / Koenig lookup

Invoking begin and end via using-directive?

How to write a standard-like function that has high overload priority

Lookup of dependent names in C++ template instantiation

Why doesn't B::f solve the ambiguity but A::f does?

Why this ADL case is working?

Why Argument Dependent Lookup doesn't work with function template dynamic_pointer_cast

Interesting behavior of compiler with namespaces

C++ compile time counters, revisited

what does `using std::swap` inside the body of a class method implementation mean?

What's the point of iter_swap?