Search code examples
When and where are C++ concepts instantiated?...


c++c++-conceptsc++23argument-dependent-lookup

Read More
Argument Dependent Lookup and global namespace...


c++argument-dependent-lookupname-lookup

Read More
argument dependent lookup preference during unqualified lookup...


c++argument-dependent-lookup

Read More
Does Koenig's lookup apply here?...


c++argument-dependent-lookup

Read More
How to make ADL work with overloaded functions across C++ modules?...


c++argument-dependent-lookupc++-modules

Read More
why using functor for implementing customization point, instead of simple function?...


c++functorargument-dependent-lookupname-lookupniebloid

Read More
Force adl to not use function from specific namespace...


c++argument-dependent-lookuplibpqxx

Read More
Why global-scope function declaration with built-in type arg must be visible before unqualified call...


c++language-lawyerc++20header-filesargument-dependent-lookup

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


c++templatesc++20argument-dependent-lookup

Read More
Adding an ostream inserter into std:: namespace...


c++namespacesc++20argument-dependent-lookup

Read More
why does 'using namespace' not take priority when in a namespace...


c++namespacesargument-dependent-lookup

Read More
How to check at compile time for the existence of a global-scope function accepting given argument t...


c++c++17sfinaeargument-dependent-lookupglobal-scope

Read More
How to match the int type to a C++ concept requiring a valid function?...


c++c++-conceptsargument-dependent-lookup

Read More
Argument-dependent lookup for built in types vs user-defined types...


c++templatesargument-dependent-lookup

Read More
why `::a::f()` is visible as `f` inside `::b::f()` scope?...


c++argument-dependent-lookup

Read More
Why is the function with a std::initializer_list parameter not found despite trying to bring it into...


c++c++20initializer-listargument-dependent-lookupusing-declaration

Read More
What is "Argument-Dependent Lookup" (aka ADL, or "Koenig Lookup")?...


c++argument-dependent-lookupname-lookupc++-faq

Read More
Compile error when calling operator<< on a custom type from a different namespace...


c++namespacesoperator-overloadingargument-dependent-lookup

Read More
Do namespaces affect order of template function instantiations?...


c++templatesargument-dependent-lookup

Read More
ADL lookup not considering std for non-template function from within another namespace...


c++c++20argument-dependent-lookupname-lookup

Read More
Why does ADL fail on a dependent typename?...


c++argument-dependent-lookup

Read More
How does "using std::swap" enable Argument-Dependent Lookup (ADL)?...


c++c++11argument-dependent-lookupcopy-and-swap

Read More
What does `using std::swap` inside the body of a class method implementation mean?...


c++stdusingargument-dependent-lookup

Read More
Why doesn't argument-dependent lookup work for std::make_tuple?...


c++namespacesargument-dependent-lookup

Read More
Why does "xxx::function();" not work but "using namespace xxx; function();" does...


c++boostnamespacesboost-graphargument-dependent-lookup

Read More
How do I specialize a templated function for types that have a particular method name?...


c++templatessfinaetemplate-specializationargument-dependent-lookup

Read More
ADL not working as expected...


c++iteratorargument-dependent-lookup

Read More
Trouble with using overloaded << for std::variant...


c++c++17perfect-forwardingargument-dependent-lookup

Read More
Best practice for overloading functions with only STL types...


c++stlargument-dependent-lookup

Read More
first friend function template declaration is visible through `using namespace` but not through qual...


c++c++11templatesfriendargument-dependent-lookup

Read More
BackNext