I wonder if it is possible to write the following lengthy namespace usage in a more succinct way:
#include <iostream>
#include <iomanip>
using std::ostream;
using std::cout;
using std::endl;
using std::ios;
using std::setw;
using std::setfill;
using std::hex;
say:
using std::{ostream,cout,endl,ios,setw,setfill,hex}; // hypothetically, of course