I have a namespace hierarchy and want to give an abbreviations for some long namespace names. For example, I have
Math::Geometry::OneDimension::
and I want to use Ge
for Geometry
and D1
for OneDimension
thus the following works
Math::Ge::OneDimension::
Math::Geoemtry::D1::
Math::Ge::D1::
Is it possible to use namespace alias to do it?