Search code examples
c++stdstdlist

where can i find c++ std API's - for example api for std::list


I'm doing some homework for school, and I would like to study the api for std::list, as i'm supposed to implement one of my own. I'd like to implement a similar interface to that of std, so that i may use my own list comfortably later.

Thanks.


Solution

  • You will find the complete list of member functions and operators at cppreference.com (as also pointed out by @Rook)

    But I also think this is not easy, and for sure not for a C++ beginner.