+ 2
Definiton of STL function!
Hello, can anybody tell me where can I find how are STL functions made of?
4 Answers
+ 4
Check this too
"The C++ Standard Template Library (STL) - GeeksforGeeks" https://www.geeksforgeeks.org/the-c-standard-template-library-stl/
+ 2
Many sites are available like geeksforgeek, cpp reference
..... If u want to read from books u can download primer cpp of accelerated cpp book
+ 2
Sorry it not how STL functions are implemented?
But some usefull functions explanation which present in STL classes pair ,tuple,array,vector ,list,map classes.
Hope it will help you .
https://code.sololearn.com/cg8oAdrHa4W0/?ref=app
https://code.sololearn.com/c4R48vGnBzmz/?ref=app
https://code.sololearn.com/cxIK9YwzW0vx/?ref=app
https://code.sololearn.com/cqoMCXw5yAcD/?ref=app
0
I think for example:
length() string function, instead of using this STL function length() you can also write this function on the other hand like with using for loop and if condition. I think every STL function is written like that.