A form of name lookup in C++ which allows function names to be found in namespaces associated with the arguments used in the function call.

learn more… | top users | synonyms (1)

2
votes
1answer
120 views

Non-obtrusive way of getting around an argument dependent lookup ambiguity

Here's my case: I am trying to use a library that has a type Foo::a, and specifies a Foo::swap as well. Another library that I am consuming has a std::vector<Foo::a> instantiation. I am trying ...
1
vote
1answer
116 views

Running AIR application tests with Maven/FlexMojos 4.2 beta

I have Maven module which is an AIR application. I use the FlexMojos plugin (version 4.2-beta). EDIT: further investigation revealed that the issue is the descriptor used for the tests TestRunner.xml ...
0
votes
4answers
72 views

In what situations Argument Dependent name Look-up (ADL) kicks in?

In Wikipedia article below quote is mentioned: ADL only occurs if the normal lookup of an unqualified name fails to find a matching class member function. In this case, other namespaces not ...
4
votes
1answer
105 views

Doesn't ADL looks up static member functions?

This is follow up question from Does argument dependent lookup only search namespaces or classes too? , In which @David Rodríguez said "ADL will look in the enclosing namespace of the type, and also ...
5
votes
5answers
225 views

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

#include <iostream> using namespace std; void swap(int *a, int *b){ *a = *a^*b; *b = *a^*b; *a = *a^*b; } int main() { int array[]={1,9,2,8,3,7}; for(int i=0; ...
2
votes
2answers
50 views

Templated function name lookup conundrum(ADL)

Given the following bit of code, why is it that the Generic function is invoked instead of the more specific SomeClass based function? template <typename T> class SomeClass { }; template ...
0
votes
1answer
35 views

Calling a function by ADL from another function

I have a question relating to how types are found by ADL in generic situations. Specifically, I have some 'generic' code where I need to check at compile-time for the presence of a function which ...
3
votes
1answer
153 views

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

I'm having trouble understanding the rules behind argument-dependent (Koenig) lookup. Consider the code below: #include <iostream> using namespace std; namespace adl { struct Test { }; ...
4
votes
2answers
199 views

Why does C++11 not support name lookup like this? [closed]

struct A { enum InnerEnum { X }; A(InnerEnum x) {} }; int main() { A a(X); } The compiler complains: error C2065: 'X' : undeclared identifier The compiler knows what the ...
23
votes
2answers
401 views

What's the point of iter_swap?

I was just wondering, why would anybody write this: std::iter_swap(i, k); instead of this? std::swap(*i, *k); // saved a few keystrokes! Then I looked into the implementation of iter_swap, and ...
0
votes
0answers
40 views

Does argument dependent name (ADL) search friends? [duplicate]

Possible Duplicate: Argument-dependent lookup in C++ Does argument dependent name lookup also search friends to resolve calls? Currently my understanding of ADL is limited to searching ...
2
votes
1answer
76 views

c++: the context of an unqualified name lookup in a template

I tried to consult the standard on the resolution of do_run, and found "For the part of the lookup using unqualified name lookup (3.4.1) or qualified name lookup (3.4.3), only function declarations ...
1
vote
1answer
61 views

override an overload selected by ADL

I'm using a library with a defective operator<<, which I want to replace with my own version. It follows the idiom where ADL selects the overload based on the argument's membership in the ...
0
votes
1answer
58 views

Usual unqualified lookup and Argument-dependent name lookup(ADL)

For unqualified name lookup, 'Usual unqualified lookup' and 'Argument-dependent name lookup'(ADL), I cannot find in standard which one happens first ? Again as both trying to add something to the ...
3
votes
2answers
199 views

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

I have two snippets for ADL for demo purposes. Both snippets have been compiled by VC10, gcc & comeau C++ compilers, and the result are the same for all three. <1>ADL against using directive ...
3
votes
1answer
281 views

Argument-dependent lookup in C++

How does this work? Is it related to ADL? #include <iostream> template <typename T> struct A { friend void f(T x) { std::cout << "A\n"; } }; int main() { ...
4
votes
2answers
172 views

Determining return type of “generic function”

Suppose, I want to develop a generic library which should be usable with number-like types including double and user-defined types. The problem, I'm facing right now is that I don't know how to write ...
0
votes
1answer
355 views

C++11 style SFINAE and function visibility on template instantiation

I'm not sure if this has anything to do with sfinae, or just something thats relevant for any templated function. I am attempting to use sfinae to enable/disable a member function based on existence ...
0
votes
1answer
87 views

Argument-dependent Name Lookup: add extra namespace to look into

I would like to exploit the ADL rules to check for the function in an extra namespace: Say we have a class X. class X { ... }; In A call X x; f(x); I'd like the compiler to look into ...
7
votes
1answer
227 views

Argument-dependent lookup through base of a template class

I have a template class NB::B<T> derived from a non-template class NA::A in a namespace. act<T> is a template function calling add_ref function on an instance of its template argument. ...
0
votes
4answers
335 views

Providing swap() for a C++ template class breaks std::swap()?

I was trying to implement the copy-and-swap idiom in my custom Matrix class, and I ran into some trouble with the implementation of swap() in the way suggested in the linked-to question: (The ...
2
votes
2answers
140 views

Does argument dependent lookup only search namespaces or classes too?

Ive been reading the Josuttis template book, and Ive been trying to put my head around ADL. He says "ADL proceeds by looking up the name in namespaces and classes "assocaited with" the types of the ...
3
votes
2answers
110 views

ADL does not work in the specific situation

I've made is_iterable template as below - which checks that free functions begin/end are available (in the context of ADL) and return proper iterator object. (Which is the requirement for iterable ...
1
vote
2answers
68 views

How to remove the current function from the overload set?

I have a function in my namespace, ns::foo, whose job is to dispatch an invocation of foo using argument-dependent lookup: namespace ns { template<typename T> void foo(T x) { // call foo ...
1
vote
2answers
200 views

ADL fails when there are lambda arguments?

quite some time ago i noticed that in Visual C++ 10 ADL fails when at least one of the arguments is a lambda. std::vector<float> vec; for_each(begin(vec), end(vec), [](float) {}); The above ...
20
votes
2answers
494 views

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

Consider the following C++ program: #include <memory> struct A {}; struct B : A {}; int main() { auto x = std::make_shared<A>(); if (auto p = dynamic_pointer_cast<B>(x)); ...
0
votes
1answer
81 views

ADL versus scope-resolution — which to prefer?

How do I tell whether I should use my_type bar; using some_namespace::foo; foo(bar); instead of some_namespace::foo(bar); when calling my function foo (that is not within my immediate scope)? Is ...
0
votes
1answer
345 views

AIR Linux - ADT Failed to load the AIR Runtime

i've just added air-sdk to ubuntu, and adl is working, but when im trying to use adt i have this: Failed to load the AIR Runtime What i can do whit this? I need adt to make native installer from ...
21
votes
2answers
375 views

How do I write an ADL-enabled noexcept specification?

Imagine I'm writing some container template or something. And the time comes to specialize std::swap for it. As a good citizen, I'll enable ADL by doing something like this: template <typename ...
6
votes
4answers
119 views

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

I have a problem where I'd like to provide a generic version of a function foo which may only be applied when there is absolutely no other match for an invocation. How can I modify the following code ...
18
votes
2answers
536 views

getting an element from a tuple [duplicate]

Possible Duplicate: Why doesn't ADL find function templates? Calling get does not seem to invoke argument dependent lookup: auto t = std::make_tuple(false, false, true); bool a = ...
0
votes
1answer
354 views

AIR: Adobe Air Debug Launcher stopped working…any logs?

I m having trouble with AIR debug launcher(adl) under win 7 64 bits home familial with AIR SDK runtime 2.7. It sometimes crash and i have no posibilities to understand if its because of my software or ...
14
votes
1answer
216 views

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

Consider the following program: #include <iostream> #include <iterator> #include <vector> #include <utility> using namespace std; //just for convenience, illustration only ...
6
votes
2answers
106 views

Do custom container iterators guarantee ADL to consider namespace std?

I have no intention of using this in real code. I promise. I'm just pathologically curious. Does the standard guarantee that std namespace is going to be found when a function argument is of type ...
1
vote
3answers
164 views

ADL without templates

Can one show me an example of ADL without using templates? Never seen something like that. I mean something like here. Specifically I am interested in example in which it leads to some pitfall like in ...
2
votes
0answers
186 views

swap() for custom type in C++: use ADL or template specialization? [duplicate]

Possible Duplicate: how to provide a swap function for my class? Similar questions (e.g. How to overload std::swap()) have been asked here, but I still don't see a conclusive answer. From ...
2
votes
2answers
238 views

Which compiler between Visual Studio 10 and GCC 4.5 is correct regarding operator overloading and argument-dependendent lookup?

I have the following code: class Foo; class Bar; class Bar { public: Bar() { } Bar(Foo &foo) { } }; class Foo { public: Foo() { } Foo(Foo &foo) { } ...
7
votes
1answer
224 views

3.4.2 Argument-dependent name lookup from n3290 Draft

A point from ISO draft n3290 section 3.4.2 paragraph 1: When the postfix-expression in a function call is an unqualified-id, other namespaces not considered during the usual unqualified lookup may ...
10
votes
2answers
252 views

Beginning generically, plus decltype considering local using-declaration

C++0x's ranged-for loop has a special exception to handle arrays (FDIS §6.5.4), and there are two functions, std::begin and end, which are overloaded to handle arrays or to select begin/end methods. ...
4
votes
1answer
340 views

C++ ADL in nested namespaces with template function

I have a question regarding the standard ADL resolution in C++. Here is a sample code explaining my enquiry: #include <string> // The mechanism: namespace A { template< class C > ...
0
votes
1answer
772 views

SharePoint 2007 Dynamic Filtered Lookup

Good morning, all. I'm looking for help with setting up a library template in SharePoint 2007. Here are the details: I have a parent site with several subsites. I want to set up a library template ...
11
votes
2answers
297 views

Why does this program swap the values?

I have the following code: #include "stdafx.h" #include <iostream> using namespace std; #include <conio.h> #include <cstring> #include <iomanip> void swap(long a, long b) { ...
1
vote
3answers
416 views

Templates and argument dependent lookup

When compiling this program, I was expecting the operator<< call to resolve to the one in the global namespace, but instead, the compiler reports an ambiguous overload. I thought non-dependent ...
0
votes
1answer
87 views

Architectural Description Language (ADLs) usage?

Im doing a project for Software Architecture Module and have to create one of my 'Views' using an ADL. While I've been doing some research into the various ADL's I have found out that most of them ...
6
votes
1answer
958 views

Range-based for loops and ADL

The C++0x standard working draft states (section 6.5.4) the following about the begin() and end() calls that are implicit in a range-based for loop: 'begin' and 'end' are looked up with ...
4
votes
2answers
483 views

Is there a legal way to print tuples and pairs using operator<<?

I have a set of templates/functions that allow me to print a tuple/pair assuming that each type in the tuple/pair has operator<< defined for it. Unfortunately, due to 17.4.3.1, it is illegal to ...
0
votes
1answer
295 views

SCORM 2004 ADL Test Suite Error

tldnr: need a variation to allow "/" in parameter object on organization item; When doing a "Content Package Conformance Test" I receve the following error when for the parameters attribute. This ...
0
votes
5answers
553 views

Rules for Argument Dependent name lookup in C++

There have been some questions on SO recently on ADL that have got me thinking. Basically, I am confused which header files compiler can search when performing ADL ? Is it only the ones included by ...
21
votes
4answers
546 views

Functions with class arguments are leaked from a namespace?

I have a small piece of code here for your consideration which puzzles me quite a lot. The strange thing is that it compiles on both Sun Studio and GCC even though I think it should not. Consider ...
8
votes
2answers
972 views

C++ operator lookup rules / Koenig lookup

While writing a test suite, I needed to provide an implementation of operator<<(std::ostream&... for Boost unit test to use. This worked: namespace theseus { namespace core { ...

1 2