M
Marcin Kalicinski
Hi,
map<string, string> m;
(1) map<string, string>::iterator i = m.find("x");
(2) m::iterator i = m.find("x");
Does the extended syntax of :: operator as shown by (2) conflicts with any
existing C++ construct? If possible, it would make things shorter without
all these typedefs.
Best regards,
Marcin
map<string, string> m;
(1) map<string, string>::iterator i = m.find("x");
(2) m::iterator i = m.find("x");
Does the extended syntax of :: operator as shown by (2) conflicts with any
existing C++ construct? If possible, it would make things shorter without
all these typedefs.
Best regards,
Marcin