Reputation: 1217
I do C++ and R programming since last 3 years.
I wish to know is there a search engine for C++ commands where I can find all the details regarding the command.
This is the example of what I am looking for: This is a search engine for R commands: http://www.rseek.org/
Upvotes: 3
Views: 358
Reputation: 283971
Google works pretty well.
If you only want C++ hits, use the site:
restriction, as in "site:cppreference.com emplace_back"
Perhaps "site:cppreference.com pow" is a better example, since pow
by itself would normally come up with many unrelated hits.
Of course, keyword search works also, try "site:cppreference.com natural logarithm"
Upvotes: 7