#What is clazz_extensions
Add utility methods on defined class.
##example
"example_class".classify #=> "ExampleClass"
"example/class_a".classify #=> "Example::ClassA"
[:a, :b, :c, :a, :d, :c].duplication #=> [:a, :c]How to Use
add all
ClazzExtension.load do
array :all
string :all
endadd specific methods
ClazzExtension.load do
string add: [:classify ]
array add: [:duplication, :unduplication ]
endadd every methods that excluding specific
ClazzExtension.load do
string refect: [:to_const ]
array refect: [:duplication! ]
end