Library implementations (i.e lists, arrays)

Is there a way to see library (i.e. pointers, lists, arrays) implementations and their class functions such as insert(), delete(), makenull() in actual code like C++, or Python, etc.? I'm just curious to know in detail how they work.
Is there a way to see library (i.e. pointers, lists, arrays) implementations
Sure. Just open any standard header and look. For already compiler runtime library it is slightly harder: look what library is used by your compiler, then search it and download source (if it is not MS library. It is closed sourse).
pointers
pointers are not part of the library but the language itself.
The Microsoft CRT source is provided with Visual Studio; check out the VC\crt\src subdirectory.

Andy
Topic archived. No new replies allowed.