Does D have anything comparable to C++ references à la "voidnullCheckLessFunction(const std::string& notNullStr) {...}" or does it onlyhave the equivalent of "void nullCheckingRequired(const std::string* mightByNullStr) {...}"?
void nullCheckLessFunction(ref const(string) notNullStr) { .. }
