STDEASY
Library that simplify to find header for class from STL library. Instead of searching header for some class you can just include header with the class name.
Table of Contents
Example
- Before:
#include <utility>
int main()
{
std::pair<int, int> pair;
return 0;
}
- After:
#include <stdeasy/pair>
int main()
{
std::pair<int, int> pair;
return 0;
}
In this example we just include pair header for std::pair instaed open google or cppreference