The standard library contains core utilities provided by all implementations of the language.
I need to read a whole file into memory and place it in a C++ std::string. If I were …
c++ string caching file-io standard-libraryGo's standard library does not have a function solely intended to check if a file exists or not (like Python's …
file go standard-libraryI set up CDT for eclipse and wrote a simple hello world C program: #include <stdio.h> int …
c eclipse eclipse-cdt standard-libraryI know it is a common issue, but looking for references and other material I don't find a clear answer …
c++ operator-keyword string-concatenation stdstring standard-libraryI might have an array that looks like the following: [1, 4, 2, 2, 6, 24, 15, 2, 60, 15, 6]
arrays swift standard-libraryI have two postcodes char* that I want to compare, ignoring case. Is there a function to do this? Or …
c string standard-libraryPlease consider this code. I have seen this type of code several times. words is a local vector. How is …
c++ vector stl scope standard-libraryLooking for a better way to get a machines current external IP #... Below works, but would rather not rely on …
python standard-libraryI'm fairly familiar with C++11's std::thread, std::async and std::future components (e.g. see this answer), which …
c++ multithreading c++11 promise standard-libraryConsider a function of the following general form: Foo findFoo(Collection<Foo> foos, otherarguments) throws ObjectNotFoundException { for(Foo …
java exception standard-library