How to check at compile time for the existence of a global-scope function accepting given argument t...
Read MoreWhy global-scope function declaration with built-in type arg must be visible before unqualified call...
Read MoreHow to match the int type to a C++ concept requiring a valid function?...
Read MoreArgument-dependent lookup for built in types vs user-defined types...
Read Morewhy `::a::f()` is visible as `f` inside `::b::f()` scope?...
Read MoreWhy is the function with a std::initializer_list parameter not found despite trying to bring it into...
Read MoreWhat is "Argument-Dependent Lookup" (aka ADL, or "Koenig Lookup")?...
Read MoreCompile error when calling operator<< on a custom type from a different namespace...
Read MoreDo namespaces affect order of template function instantiations?...
Read MoreADL lookup not considering std for non-template function from within another namespace...
Read MoreHow does "using std::swap" enable Argument-Dependent Lookup (ADL)?...
Read MoreWhat does `using std::swap` inside the body of a class method implementation mean?...
Read MoreWhy doesn't argument-dependent lookup work for std::make_tuple?...
Read MoreWhy does "xxx::function();" not work but "using namespace xxx; function();" does...
Read MoreHow do I specialize a templated function for types that have a particular method name?...
Read Moreargument dependent lookup preference during unqualified lookup...
Read MoreTrouble with using overloaded << for std::variant...
Read MoreBest practice for overloading functions with only STL types...
Read Morefirst friend function template declaration is visible through `using namespace` but not through qual...
Read MoreWhich functions in standard C++ library should not be prefixed with std:: when used?...
Read Morenamespace usage is preventing template instantiation of overload...
Read Moreusing namespace std causes boost pointer cast to trigger ADL in c++17 standard...
Read MoreADL in case of equal-named member function...
Read MoreHidden friend to_json function unexpectedly resolves for shared_ptr...
Read MoreTrying to create a universal map printer and this snippet won't compile (Issue with ADL?)...
Read MoreDeduction of template arguments for friend function declared in class template...
Read MoreShould static_pointer_cast calls be std:: qualified, or relied upon ADL?...
Read MoreWhy is this function call didn't reject the unsuitable overload?...
Read MoreC++ class templates can be implicity specialized and instantiated without angle brackets?...
Read More