Modern C++ library providing scanf-like input parsing with type safety
Scanf for modern C++
scnlib$ scn::scan<int>("42") to extract integer values$ scn::scan<int, std::string>(input, "{} {}") to parse int and string$ scn::scan<double>("3.14") to extract decimal values