Definiton of STL function! | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Definiton of STL function!

Hello, can anybody tell me where can I find how are STL functions made of?

21st Mar 2021, 4:24 PM
TeaserCode
4 Answers
+ 4
Check this too "The C++ Standard Template Library (STL) - GeeksforGeeks" https://www.geeksforgeeks.org/the-c-standard-template-library-stl/
21st Mar 2021, 4:42 PM
!Derrickee
!Derrickee - avatar
+ 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
21st Mar 2021, 6:05 PM
A S Raghuvanshi
A S Raghuvanshi - avatar
+ 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
23rd Mar 2021, 12:56 PM
Deepesh Patel
Deepesh Patel - avatar
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.
21st Mar 2021, 7:24 PM
TeaserCode