Reputation: 5963
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
Reputation: 99074
With Xcode you use Esc, but it's auto-completion for C++ simply doesn't really work.
Upvotes: 1
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
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