Koekiebox
Koekiebox

Reputation: 5963

C++ std method listing

I am new to C++ and XCode.

I would like to know how I can get a list of available methods from namespace std or any other namespaces #include'ed in a cpp file., in a similar way you would do method scoping in Eclipse (ctrl+space).

Thanks

Upvotes: 2

Views: 621

Answers (3)

Georg Fritzsche
Georg Fritzsche

Reputation: 99074

With Xcode you use Esc, but it's auto-completion for C++ simply doesn't really work.

Upvotes: 1

Mihran Hovsepyan
Mihran Hovsepyan

Reputation: 11108

It depends on IDE you use. In Visual Studio and NetBeans ctrl+space works too. Also you can just type :: operator and see what is aviable in current scope.

Upvotes: 0

slashmais
slashmais

Reputation: 7155

Try using an editor e.g. Code::Blocks that gives you a list of all std:: -things defined in the current includes to a project. Just type std:: and a list will popup.

Upvotes: 0

Related Questions