>>106434262
Without using statements
import std.collections;
import com.company.util;
std::collections::HashMap<std::core::String, std::collections::Vector<com::company::util::People>> getPeopleFromCode(std::core::StringView s) {
// body
}
With using statements
import std.collections;
import com.company.util;
using std::collections::HashMap;
using std::collections::Vector;
using com::company::util::Person;
HashMap<String, Vector<People>> getPeopleFromCode(StringView s) {
// body
}
Who is the jeet now? Do you think the first is more readable?