سؤال

I understand that you can accomplish namespacing in Ruby using modules.

However, sufficiently lengthy namespaces can make code very un-readable. in C++ this is solved with the using declaration

What is the ruby equivalent of a c++ using declaration?

هل كانت مفيدة؟

المحلول

It is include.

include Some::Lengthy::Module::NameSpace
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top