Reduces need for as, and if used consistently, increases readability -
for example, IO can reasonable need to refer to IO and OS, and their
private versions; if done consistently, this is IO\foo, _IO\foo,
OS\foo and _OS\foo, rather than pulling in multiple namespaces named
'_Private'
Old:
HH\Lib\Experimental\Foo\_Private
New:HH\Lib\_Private\_Foo
Reduces need for
as
, and if used consistently, increases readability - for example,IO
can reasonable need to refer to IO and OS, and their private versions; if done consistently, this isIO\foo
,_IO\foo
,OS\foo
and_OS\foo
, rather than pulling in multiple namespaces named '_Private'