I just started to learn C++ this month.
In Python, I can view the documentation of a built-in function (for example, str.find
) by using help(str.find)
.
However, I've no idea about how to view the documentation of std::find
in <algorithm>
, for example.
Does anyone have ideas about a quick way to look up documentation of a function in C++?