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)

0
votes
0answers
8 views

Retrieving a Netbeans Lookup result based on parameter

I'm new to Netbeans' Lookup API and I wanted to know if there's a possibility to return objects based on certain params. Can I pass a context to the Lookup? The Netbeans docs says I can: It is also ...
5
votes
1answer
119 views

Understanding the scope of operators in C++

#include <iostream> namespace Foo { class Baz { }; std::ostream& operator<< ( std::ostream& ostream , const Baz& baz ) { return ostream << ...
2
votes
1answer
126 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
123 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
78 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
107 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
227 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
51 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
36 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
163 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
202 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 ...
24
votes
2answers
440 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
64 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
61 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
214 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 ...
4
votes
1answer
337 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
176 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
396 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
89 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
232 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
363 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
149 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
116 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
69 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
204 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
516 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
85 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
355 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
389 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
124 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
552 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
362 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
220 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
107 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
166 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
187 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
241 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
227 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
253 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
352 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
795 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
300 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
429 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
88 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
972 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
490 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
298 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
558 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 ...

1 2